MCP Catalogs
Home

everything vs dynamic-fastmcp

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

everything
by modelcontextprotocol
dynamic-fastmcp
by ragieai
Stars★ 85,748★ 45
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis month9 mo ago

everything · Summary

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

dynamic-fastmcp · Summary

Dynamic FastMCP extends MCP Python server with context-aware tools that adapt behavior based on user and tenant context.

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

dynamic-fastmcp · Use cases

  • Multi-tenant SaaS applications where tools behave differently per tenant
  • User-specific tools that adapt functionality based on authenticated user context
  • Context-sensitive operations that change behavior based on request path or parameters

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

dynamic-fastmcp · Install

pip install dynamic-fastmcp

Or using UV:

uv add dynamic-fastmcp

For Claude Desktop configuration, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "dynamic-fastmcp": {
      "command": "python",
      "args": ["-m", "dynamic_fastmcp"],
      "env": {
        "PYTHONPATH": "<your-project-path>"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.