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 | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOthersports | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 4 mo ago | this 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-f1dataConfigure 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