MCP Catalogs
Home

everything vs fastify-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
fastify-mcp-server
by NEDDL
Stars★ 85,748★ 7
30d uses
Score7741
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOps & Infra
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

fastify-mcp-server · Summary

High-performance MCP server built with Fastify, TypeScript, and functional programming principles.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

fastify-mcp-server · Use cases

  • Building AI agent platforms requiring secure MCP server connections
  • Integrating LLMs with external tools and data sources
  • Creating enterprise-grade MCP infrastructure with authentication and monitoring

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

fastify-mcp-server · Install

Installation:

  1. Clone the repository: git clone https://github.com/NEDDL/fastify-mcp-server.git
  2. Navigate to the project: cd fastify-mcp-server
  3. Install dependencies: pnpm install
  4. Build the project: pnpm build
  5. Configure environment variables by copying .env.example to .env

For Claude Desktop integration, add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "fastify-mcp-local": {
      "command": "node",
      "args": ["/absolute/path/to/fastify-mcp-server/dist/mcp-stdio.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.