F1 Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited F1 Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A real-time Formula 1 analytics server built with the Model Context Protocol (MCP). Ask Claude natural language questions about F1 races, lap times, tyre strategies, pit stops, and more — powered by live data from the OpenF1 API.
"What tyre strategy did the top 3 drivers use in the 2026 Monaco Race?" "Who set the fastest lap at the 2026 Australian GP?" "Was there a safety car at the 2024 British GP?"
Architecture Diagram
Claude Desktop acts as the MCP client. On startup, it boots the F1 MCP server as a local subprocess and communicates via stdio (standard input/output). When you ask a natural language question, Claude reads the tool definitions and docstrings, decides which tools to call (and in what order), fires the OpenF1 API requests, and synthesizes the response — all automatically.
No API key required. No authentication. Just live F1 data.
| Tool | Description |
|---|---|
get_sessions | Find all sessions for a year/country (Race, Qualifying, Practice, Sprint) |
get_drivers | List all drivers in a session with number, name, and team |
get_driver_laps | All lap times and sector times for a specific driver |
get_fastest_lap | Fastest lap across all drivers in a session |
get_pit_stops | Pit stop laps and durations for a session |
get_tyre_stints | Full tyre strategy — compound, stint number, lap range |
get_race_positions | Final finishing positions for all drivers |
get_weather | Track temp, air temp, humidity, wind, and rainfall |
get_race_control | Safety cars, flags, penalties, and incidents |
What sessions are available for the 2026 season?
Who set the fastest lap in the 2026 Australian GP?
What tyre strategy did the top 3 use in the 2026 Monaco Race?
Did it rain during the 2024 British GP qualifying?
Were there any safety cars in the 2024 Monaco Race?
What were Hamilton's lap times in the 2026 Monaco Race?
How long were Verstappen's pit stops in the 2024 Abu Dhabi GP?Sessions
Fastest Lap
Tyre Strategy
# Clone the repo
git clone https://github.com/kevinjohnson/F1-MCP-Server.git
cd F1-MCP-Server
# Install dependencies
uv add "mcp[cli]" requests
# Register with Claude Desktop
uv run mcp install main.pyThen fully quit and reopen Claude Desktop. The F1 Assistant will appear under Connectors.
If the server shows as "Server not found", make sure main.py ends with:
if __name__ == "__main__":
mcp.run() # No transport argument — stdio onlyAll data comes from OpenF1 — a free, open-source API providing real-time and historical F1 telemetry from 2023 onwards.
Claude can't access live data or external APIs on its own. MCP (Model Context Protocol) bridges that gap — it lets you define tools as Python functions that Claude can call autonomously. The key insight: Claude reads your docstrings to decide when and how to use each tool, enabling it to chain multiple API calls together without any explicit instructions.
In this project, a single question like "What tyre strategy did the top 3 use?" triggers Claude to automatically: find the session key → get race positions → resolve driver numbers → fetch tyre stints for each driver — all from one natural language prompt.
F1-MCP-Server/
├── main.py # MCP server with all 9 tools
├── pyproject.toml # uv project config
├── images/ # Screenshots and architecture diagram
└── README.mdget_car_telemetry — throttle, brake, DRS, gear data per lapget_overtakes — position change events during a raceget_championship_standings — driver and constructor standingscompare_drivers tool for head-to-head lap time analysisBuilt by Kevin Johnson · Powered by OpenF1 · Built with MCP
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.