MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

M
MCP Server Test

MCP server by Puppo

Created 1/9/2026
Updated 1 day ago
Repository documentation and setup instructions

@puppo/mcp-server-test

A Model Context Protocol (MCP) server providing mathematical utility tools.

Features

  • Fibonacci: Calculate Fibonacci numbers for a given index
  • Sum: Sum a list of comma-separated numbers

Installation

npm install -g @puppo/mcp-server-test

Usage

Register the MCP server:

{
  "mcpServers": {
    "puppo-mcp-server-test": {
      "command": "npx",
      "args": ["-y", "@puppo/mcp-server-test@latest"]
    }
  }
}

Available Tools

fibonacci

Computes the Fibonacci number for a given non-negative integer.

Parameters:

  • number: A non-negative integer (e.g., 10)

sum

Sums a list of numbers provided in a string format.

Parameters:

  • numbers: A comma-separated list of numbers (e.g., "1,2,3")

License

MIT

Quick Setup
Installation guide for this server

Install Package (if required)

npx @modelcontextprotocol/server-mcp-server-test

Cursor configuration (mcp.json)

{ "mcpServers": { "puppo-mcp-server-test": { "command": "npx", "args": [ "puppo-mcp-server-test" ] } } }