-
Notifications
You must be signed in to change notification settings - Fork 87
Add f1-mcp-server.json #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
JoJoJoJoJoJoJo
merged 4 commits into
pathintegral-institute:main
from
will-m2m:add-f1-mcp-server
Apr 27, 2025
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,283 @@ | ||
| { | ||
| "name": "f1-mcp-server", | ||
| "display_name": "Formula One MCP Server", | ||
| "description": "A Model Context Protocol (MCP) server that provides Formula One racing data.", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/Machine-To-Machine/f1-mcp-server.git" | ||
| }, | ||
| "homepage": "https://github.com/Machine-To-Machine/f1-mcp-server", | ||
| "author": { | ||
| "name": "Machine To Machine" | ||
| }, | ||
| "license": "MIT", | ||
| "categories": [ | ||
| "Productivity", | ||
| "Knowledge Base", | ||
| "MCP Tools" | ||
| ], | ||
| "tags": [ | ||
| "f1", | ||
| "formula one", | ||
| "racing", | ||
| "sports", | ||
| "data", | ||
| "mcp" | ||
| ], | ||
| "installations": { | ||
| "uvx": { | ||
| "type": "uvx", | ||
| "command": "uvx", | ||
| "args": [ | ||
| "f1-mcp-server" | ||
| ], | ||
| "description": "Run the F1 MCP server globally using uvx (requires uv installed)", | ||
| "recommended": true | ||
| } | ||
| }, | ||
| "arguments": {}, | ||
| "is_official": true, | ||
JoJoJoJoJoJoJo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "examples": [ | ||
| { | ||
| "title": "Get 2024 Season Schedule", | ||
| "description": "Retrieve the race calendar for the 2024 F1 season.", | ||
| "prompt": "get_event_schedule(season=2024)" | ||
| }, | ||
| { | ||
| "title": "Get Monaco GP Race Results", | ||
| "description": "Fetch the race results for the 2024 Monaco Grand Prix.", | ||
| "prompt": "get_session_results(season=2024, event='Monaco Grand Prix', session='R')" | ||
| }, | ||
| { | ||
| "title": "Compare Verstappen and Hamilton", | ||
| "description": "Compare the qualifying performance of Verstappen and Hamilton at the 2023 British GP.", | ||
| "prompt": "compare_drivers(season=2023, event='British Grand Prix', session='Q', drivers=['VER', 'HAM'])" | ||
| }, | ||
| { | ||
| "title": "Get Driver Championship Standings", | ||
| "description": "Retrieve the driver championship standings for the 2023 season.", | ||
| "prompt": "get_championship_standings(season=2023, type='driver')" | ||
| } | ||
| ], | ||
| "tools": [ | ||
| { | ||
| "name": "get_event_schedule", | ||
| "description": "Get Formula One race calendar for a specific season", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "name": "get_event_info", | ||
| "description": "Get detailed information about a specific Formula One Grand Prix", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| }, | ||
| "event": { | ||
| "type": "string", | ||
| "description": "The name or round number of the event (e.g., 'Monaco Grand Prix' or 5)" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season", | ||
| "event" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "name": "get_session_results", | ||
| "description": "Get results for a specific Formula One session", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| }, | ||
| "event": { | ||
| "type": "string", | ||
| "description": "The name or round number of the event (e.g., 'Monaco Grand Prix' or 5)" | ||
| }, | ||
| "session": { | ||
| "type": "string", | ||
| "description": "The session identifier (e.g., 'R' for Race, 'Q' for Qualifying, 'FP1' for Free Practice 1)" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season", | ||
| "event", | ||
| "session" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "name": "get_driver_info", | ||
| "description": "Get information about a specific Formula One driver for a specific session", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| }, | ||
| "event": { | ||
| "type": "string", | ||
| "description": "The name or round number of the event (e.g., 'Monaco Grand Prix' or 5)" | ||
| }, | ||
| "session": { | ||
| "type": "string", | ||
| "description": "The session identifier (e.g., 'R', 'Q', 'FP1')" | ||
| }, | ||
| "driver": { | ||
| "type": "string", | ||
| "description": "The driver identifier (e.g., 'VER' for Verstappen)" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season", | ||
| "event", | ||
| "session", | ||
| "driver" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "name": "analyze_driver_performance", | ||
| "description": "Analyze a driver's performance in a Formula One session", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| }, | ||
| "event": { | ||
| "type": "string", | ||
| "description": "The name or round number of the event (e.g., 'Monaco Grand Prix' or 5)" | ||
| }, | ||
| "session": { | ||
| "type": "string", | ||
| "description": "The session identifier (e.g., 'R', 'Q', 'FP1')" | ||
| }, | ||
| "driver": { | ||
| "type": "string", | ||
| "description": "The driver identifier (e.g., 'VER')" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season", | ||
| "event", | ||
| "session", | ||
| "driver" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "name": "compare_drivers", | ||
| "description": "Compare performance between multiple Formula One drivers in the same session", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| }, | ||
| "event": { | ||
| "type": "string", | ||
| "description": "The name or round number of the event (e.g., 'Monaco Grand Prix' or 5)" | ||
| }, | ||
| "session": { | ||
| "type": "string", | ||
| "description": "The session identifier (e.g., 'R', 'Q', 'FP1')" | ||
| }, | ||
| "drivers": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "string" | ||
| }, | ||
| "description": "A list of driver identifiers to compare (e.g., ['VER', 'HAM'])" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season", | ||
| "event", | ||
| "session", | ||
| "drivers" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "name": "get_telemetry", | ||
| "description": "Get telemetry data for a specific Formula One lap", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| }, | ||
| "event": { | ||
| "type": "string", | ||
| "description": "The name or round number of the event (e.g., 'Monaco Grand Prix' or 5)" | ||
| }, | ||
| "session": { | ||
| "type": "string", | ||
| "description": "The session identifier (e.g., 'R', 'Q', 'FP1')" | ||
| }, | ||
| "driver": { | ||
| "type": "string", | ||
| "description": "The driver identifier (e.g., 'VER')" | ||
| }, | ||
| "lap": { | ||
| "type": "integer", | ||
| "description": "The lap number" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season", | ||
| "event", | ||
| "session", | ||
| "driver", | ||
| "lap" | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "name": "get_championship_standings", | ||
| "description": "Get Formula One championship standings for a specific season", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "properties": { | ||
| "season": { | ||
| "type": "integer", | ||
| "description": "The year of the season (e.g., 2024)" | ||
| }, | ||
| "type": { | ||
| "type": "string", | ||
| "enum": [ | ||
| "driver", | ||
| "constructor" | ||
| ], | ||
| "description": "Type of standings to retrieve ('driver' or 'constructor'). Optional." | ||
| } | ||
| }, | ||
| "required": [ | ||
| "season" | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.