MCP-F1data vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
MCP-F1data by Maxbleu | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOthersports | Web ScrapingAI / LLM ToolsProductivity |
| 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
MCP-F1data · Use cases
- Retrieving F1 driver statistics and career information
- Accessing historical race and championship data
- Querying circuit information and race schedules
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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" ]
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}