MCP Catalogs
Home

fastify-mcp-server vs everything

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

fastify-mcp-server
by flaviodelgrosso
everything
by modelcontextprotocol
Stars★ 27★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

fastify-mcp-server · Summary

Fastify plugin for creating MCP HTTP servers with session management, authentication, and transport options.

everything · Summary

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

fastify-mcp-server · Use cases

  • Building MCP servers for AI assistants to interact with Fastify-based backend services
  • Creating API gateways that expose MCP functionality over HTTP with authentication
  • Implementing distributed session management for MCP-based AI applications using Redis

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 · Install

npm install fastify-mcp-server @modelcontextprotocol/sdk

In Claude Desktop config.json:

{
  "mcpServers": {
    "fastify-mcp": {
      "command": "node",
      "args": ["path/to/your/fastify-server.js"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.