
F1 MCP Server
Provides comprehensive Formula 1 data access including race schedules, session results, lap times, telemetry data, driver/constructor standings, and circuit information. Enables users to retrieve and analyze F1 racing data through natural language queries using the FastF1 Python package.
README
F1 MCP Server
A Model Context Protocol (MCP) server that provides Formula 1 data using the FastF1 Python package.
Features
- Get race schedules for any F1 season
- Retrieve session results (practice, qualifying, race)
- Access lap times and telemetry data
- Driver and constructor standings
- Circuit information
Quick Start
Prerequisites
- Python 3.13
- uv package manager
1. Install uv (if not already installed)
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
2. Setup F1 MCP Server
# Quick setup
./quick-start.sh
# Or manually
make install
# or: uv sync && uv pip install -e .
3. Run the server
# MCP mode (for MCP Inspector)
make mcp
# HTTP mode (for OAuth testing)
make http
# With MCP Inspector
make inspector
MCP Inspector Setup
The MCP Inspector is a powerful tool for testing and debugging MCP servers. Here's how to set it up:
1. Install Node.js (if not already installed)
# macOS with Homebrew
brew install node
# Or download from https://nodejs.org/
2. Install MCP Inspector
# Install globally with npm
npm install -g @modelcontextprotocol/inspector
# Verify installation
mcp-inspector --version
3. Run F1 MCP Server with Inspector
# Using make command (recommended)
make inspector
# Or manually
mcp-inspector uv run python -m f1_mcp_server.server
4. Using MCP Inspector
Once started, the inspector will:
- Launch a web interface (usually at
http://localhost:5173
) - Connect to your F1 MCP server automatically
- Provide an interactive UI to test all available tools
Available F1 Tools in Inspector:
get_race_schedule
- Browse F1 race calendarsget_session_results
- View race/qualifying resultsget_driver_standings
- Check championship standingsget_constructor_standings
- Team championship dataget_lap_times
- Detailed lap timing analysis
5. Example Usage in Inspector
Try these sample requests in the MCP Inspector:
Get 2024 Race Schedule:
{
"year": 2024
}
Get Monaco GP Race Results:
{
"year": 2024,
"round_number": 8,
"session": "R"
}
Get Lap Times for Verstappen:
{
"year": 2024,
"round_number": 1,
"session": "R",
"driver": "VER"
}
Troubleshooting MCP Inspector
Inspector won't start:
# Check Node.js version (needs 16+)
node --version
# Reinstall inspector
npm uninstall -g @modelcontextprotocol/inspector
npm install -g @modelcontextprotocol/inspector
Server connection issues:
# Test server directly first
make test-startup
# Check if server starts without inspector
make mcp
Port conflicts:
# Inspector uses port 5173 by default
# Kill any processes using the port
lsof -ti:5173 | xargs kill -9
Usage with MCP Inspector
The MCP Inspector provides a web-based interface for testing F1 data tools:
# Install MCP Inspector (requires Node.js)
npm install -g @modelcontextprotocol/inspector
# Run F1 server with inspector
make inspector
# Or manually
mcp-inspector uv run python -m f1_mcp_server.server
Inspector Features:
- Interactive web UI at
http://localhost:5173
- Real-time F1 data testing
- JSON schema validation
- Tool documentation browser
Available Tools
get_race_schedule
: Get the race schedule for a specific seasonget_session_results
: Get results for a specific sessionget_driver_standings
: Get driver championship standingsget_constructor_standings
: Get constructor championship standingsget_lap_times
: Get lap times for a specific session
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.