MCP Catalogs
Home

MCP-F1data vs everything

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

MCP-F1data
by Maxbleu
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3277
Official
Categories
AI / LLM ToolsOthersports
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit4 mo agothis month

MCP-F1data · Summary

A Python-based MCP server providing Formula 1 racing data through the F1DB API.

everything · Summary

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

MCP-F1data · Use cases

  • Retrieving F1 driver statistics and career information
  • Accessing historical race and championship data
  • Querying circuit information and race schedules

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

MCP-F1data · Install

Installation

Install the package via pip:

pip install mcp-f1data

Configure in Claude Desktop by adding the following to your configuration file:

  • Windows: %APPDATA%/Claude/claude_desktop_config.json
  • Linux: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-f1data": {
        "command": "python",
        "args": [ "-m", "mcp-f1data" ]
    }
  }
}

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.