loading…
Search for a command to run...
loading…
Provides access to the Start.gg GraphQL API for querying tournament information, event standings, and player statistics. It also enables bracket management task
Provides access to the Start.gg GraphQL API for querying tournament information, event standings, and player statistics. It also enables bracket management tasks like retrieving match sets and reporting winners through natural language.
A Model Context Protocol (MCP) server that provides access to the Start.gg GraphQL API. This server allows LLMs to query tournament information, event standings, player sets, and report bracket results directly.
The server requires the following environment variable to be set:
STARTGG_API_KEY: Your Start.gg Personal Access Token.Clone the repository and install dependencies:
npm install
npm run build
npm run start:stdio
| Tool | Description |
|---|---|
get_tournament |
Retrieves details for a tournament by slug, including its events. |
get_event |
Retrieves details for an event by slug (e.g., tournament/genesis-9/event/ultimate-singles). |
get_event_standings |
Retrieves paginated standings (placements) for an event ID. |
get_event_entrants |
Retrieves a paginated list of entrants for an event ID. |
get_event_sets |
Retrieves paginated bracket sets (matches) for an event ID. |
get_player_sets |
Retrieves the most recent sets played by a player by their player ID. |
search_videogame |
Retrieves the Start.gg videogame ID for a given game name. |
report_bracket_set |
Reports the winner of a specific bracket set. |
Add the following configuration to your claude_desktop_config.json:
{
"mcpServers": {
"startgg": {
"command": "node",
"args": ["/path/to/startgg-mcp/dist/index.js"],
"env": {
"STARTGG_API_KEY": "your_api_key_here"
}
}
}
}
Once configured, you can ask Claude things like:
STARTGG_API_KEY is correctly set in your environment or client config.npm run buildnpm run dev:stdiobun run devchecknpm testApache-2.0
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"start-gg-mcp-server": {
"command": "npx",
"args": []
}
}
}