Skip to main content
Glama
tomo789

startgg-mcp-server

by tomo789

startgg-mcp-server

A Model Context Protocol server for the start.gg GraphQL API. It lets MCP clients (Claude Code, Claude Desktop, and others) discover tournaments, inspect events, entrants, sets, standings, and streams for any game on start.gg using natural language.

What is this?

start.gg exposes a powerful but complex GraphQL API: entrants vs participants vs players, integer set states, complexity-limited pagination, epoch timestamps. This server wraps that API in a small set of MCP tools with:

  • Normalized output — sets come back as { round, state: "COMPLETED", entrant1: { gamerTag, seed }, score, winnerEntrantId, ... } instead of raw GraphQL nesting

  • URL resolution — paste a start.gg URL, get tournament/event ids back

  • Built-in rate limiting, retries, and caching tuned to start.gg's documented limits

The server is game-agnostic. Game-specific logic (e.g. Smash upset detection) belongs in applications built on top — see examples/smash-ultimate-watcher.

Related MCP server: Start.gg MCP Server

Features

  • 16 read-only tools covering discovery, tournaments, events, players, streams, and URL resolution

  • Input validation (Zod) on every tool — bad ids, oversized page sizes, and malformed URLs never reach the API

  • Sliding-window rate limiter (default 75 req/60s vs start.gg's 80), retries with exponential backoff, and Retry-After support

  • Short-TTL in-memory cache for metadata queries

  • Typed error codes: AUTH_ERROR, RATE_LIMITED, NOT_FOUND, INVALID_INPUT, STARTGG_GRAPHQL_ERROR, NETWORK_ERROR, INTERNAL_ERROR

  • GraphQL documents kept in graphql/ files, separate from code

  • The API token never appears in output, logs, or error messages

  • Compact JSON output (no pretty-printing) to keep tool results small

Requirements

  • Node.js >= 22

  • A start.gg API token

Getting a start.gg API token

  1. Log in to start.gg

  2. Open developer settings (Profile → Developer Settings)

  3. Create a personal access token and copy it

Treat the token like a password. This server reads it only from the STARTGG_TOKEN environment variable.

Installation

# run without installing
npx startgg-mcp-server

# or install globally
npm install -g startgg-mcp-server

Requires STARTGG_TOKEN in the environment; MCP clients normally launch it for you (see the next section).

From source

git clone https://github.com/tomo789/startgg-mcp-server.git
cd startgg-mcp-server
npm install
npm run build

MCP client setup

Claude Code (CLI)

claude mcp add startgg --env STARTGG_TOKEN=YOUR_TOKEN -- npx -y startgg-mcp-server

Running from a source checkout instead:

claude mcp add startgg --env STARTGG_TOKEN=YOUR_TOKEN -- node /path/to/startgg-mcp-server/dist/cli.js

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "startgg": {
      "command": "npx",
      "args": ["-y", "startgg-mcp-server"],
      "env": {
        "STARTGG_TOKEN": "YOUR_TOKEN"
      }
    }
  }
}

From a source checkout, use "command": "node" and "args": ["/path/to/startgg-mcp-server/dist/cli.js"] instead.

Any MCP client that supports stdio servers works the same way: run node dist/cli.js (or the startgg-mcp-server bin once installed via npm) with STARTGG_TOKEN set.

Available tools

Discovery

Tool

Purpose

search_videogames

Find videogame ids by name (e.g. "Super Smash Bros. Ultimate" → 1386)

search_tournaments

General tournament search: name, videogame, country/state, date range, upcoming/past, open registration

get_upcoming_tournaments

Tournaments that haven't ended yet (includes in-progress), soonest first, with a days window

get_tournaments_by_videogame

Tournaments for one videogame id (upcoming / past / all)

Tournament

Tool

Purpose

get_tournament

Details, schedule, venue, events list, configured streams

get_tournament_events

Events (brackets) of a tournament, optionally filtered by videogame

get_tournament_entrants

Tournament-level participants (attendees); per-event seeding lives in get_event_entrants

get_stream_queue

Stream queue: streams (with derived Twitch URLs) and the sets assigned to each

Event

Tool

Purpose

get_event

Event details including phases (Pools, Top 8, ...) with phase ids

get_event_entrants

Entrants with seed, players, DQ flag; pagination or fetchAll

get_event_standings

Placements (use perPage: 8 for Top 8)

get_event_sets

Normalized sets with stream; filter by state, phase, round, entrants, players, VOD; includeGames for per-game details

get_set_games

Per-game stage / winner / character picks for one set; see coverage note

Player

Tool

Purpose

get_player

Player by id: gamer tag, prefix, linked user

get_player_sets

A player's recent sets across tournaments

Utility

Tool

Purpose

resolve_startgg_url

start.gg URL/slug → { type, tournamentId, eventId, slugs, names }

Tournament/event tools accept either a numeric id, a slug, or a full start.gg URL. Scheme-less URLs (start.gg/tournament/...) and <t>/event/<e> slugs are accepted too — you rarely need resolve_startgg_url explicitly, but it is there when you want the ids.

Normalized set shape

{
  "id": 106877974,
  "round": "Grand Final",
  "roundNumber": 3,
  "state": "COMPLETED",
  "stateRaw": 3,
  "completedAt": "2026-08-24T07:19:34.000Z",
  "entrant1": {
    "entrantId": 24480092,
    "name": "LittleMacMain",
    "seed": 5,
    "players": [{ "playerId": 3655189, "gamerTag": "LittleMacMain", "prefix": "" }],
    "score": 2
  },
  "entrant2": { "...": "same shape" },
  "score": { "entrant1": 2, "entrant2": 3, "displayScore": "LittleMacMain 2 - RenSuø 3" },
  "winnerEntrantId": 24481002,
  "phase": { "id": 1994001, "name": "Bracket" },
  "vodUrl": null
}

Notes grounded in the live API:

  • roundNumber < 0 means losers bracket; round is the human-readable name

  • a score of -1 is start.gg's disqualification marker

  • unstarted "preview" sets have string ids like "preview_3430499_2_0"

  • state names are decoded from the integer stateRaw; both are always returned

  • entrant1/entrant2 use a players array, so doubles/teams work unchanged

Games and characters

get_set_games (and get_event_sets with includeGames: true) add per-game details when start.gg has them:

{
  "orderNum": 1,
  "winnerEntrantId": 24480092,
  "stage": { "id": 484, "name": "Small Battlefield" },
  "selections": [{ "entrantId": 24481002, "character": { "id": 1846, "name": "Kazuya" } }]
}

derivedCharacters summarizes unique character names per entrant in first-appearance order across games. This is derived, not an API field.

Character and stage data only exists when the set was reported with it. In a 2026-09 sample, late rounds (Top 8 / streamed) had it on about 90% of completed sets; early pools about 5%. An empty games array means not reported, not that no games were played. Typical flow: get_event_sets (e.g. phaseIds for Top 8) → pick set ids → get_set_games. For many sets at once, get_event_sets with includeGames: true.

Examples

Things to ask an MCP client once connected:

Find upcoming Super Smash Bros. Ultimate tournaments this week.

Get the entrants and seeds for this start.gg tournament URL:
https://www.start.gg/tournament/.../event/...

Show me completed sets from Top 8 of that event.

Which streams are assigned to sets at this tournament?

What were the biggest seed upsets in this event?

A standalone example application (videogame lookup → upcoming tournaments → sets → upset candidates by seed difference) lives in examples/smash-ultimate-watcher.

Environment variables

Variable

Required

Default

Purpose

STARTGG_TOKEN

yes

start.gg API token

STARTGG_ENABLE_WRITES

no

false

Reserved. No write tools exist yet; the flag only logs a notice

STARTGG_RATE_LIMIT

no

75

Requests per 60s window (hard-capped at 80)

STARTGG_TIMEOUT_MS

no

30000

Per-request HTTP timeout

STARTGG_CACHE

no

on

Set off to disable the in-memory cache

The API endpoint is deliberately not configurable through the environment: the token is only ever sent to api.start.gg. When using the client as a library (tests, tooling), inject apiUrl/fetchFn via the StartggClient constructor.

Out-of-range or non-numeric values for STARTGG_RATE_LIMIT / STARTGG_TIMEOUT_MS fall back to the default and log a warning on stderr.

Without STARTGG_TOKEN the server still starts and lists tools, but every call returns a clear AUTH_ERROR explaining how to fix it.

Security

  • The token is read from the environment only, sent only to api.start.gg, and never included in tool output, logs, or error messages

  • All tools are read-only; no mutations are implemented

  • .env files are git-ignored; use .env.example as a template

  • User-supplied input is schema-validated before any request is built

Rate limits

start.gg allows 80 requests per 60 seconds and at most 1000 objects per request. This server:

  • keeps a sliding-window budget below the request limit (default 75/60s)

  • retries 429 (honoring Retry-After) and transient 5xx errors with exponential backoff, at most 3 retries — GraphQL errors are never retried

  • caps perPage per tool so responses stay under the 1000-object complexity limit (sets are expensive: ~26+ objects each, hence perPage <= 30)

  • caps fetchAll at 5 pages per tool (output is meant for an LLM context, so it stays around 100 KB of compact JSON) and reports truncated: true when it stops early

Development

npm run dev        # run from source (tsx)
npm run build      # compile to dist/
npm run typecheck  # tsc --noEmit
npm run lint       # eslint
npm run format     # prettier

GraphQL documents live in graphql/*.graphql (one file per domain, multiple named operations per file; requests select an operation via operationName). Schema facts verified against the live API are recorded in docs/startgg-api-notes.md — read it before adding fields.

Testing

npm test                    # unit tests (fixtures/mocks only, no network)
STARTGG_INTEGRATION=1 STARTGG_TOKEN=... npm test   # + 2 live API smoke tests
STARTGG_TOKEN=... node scripts/smoke.mjs           # full stdio end-to-end smoke (~10 live requests)

Unit tests cover the URL resolver, normalizers, input validation, pagination, GraphQL/HTTP error handling, the rate limiter, and the cache.

License

MIT

Available Tools

15 tools
get_eventGet eventA
Read-only

Get one event (bracket) of a tournament: name, start time, state, entrant count, videogame, parent tournament, and its phases (e.g. Pools, Top 8) with phase ids you can pass to get_event_sets phaseIds.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg event URL, e.g. https://www.start.gg/tournament/genesis-9/event/ultimate-singles.
slugNoEvent slug in the form "tournament/<t>/event/<e>".
eventIdNoNumeric start.gg event id. Provide exactly one locator.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The readOnlyHint annotation already establishes the read-only nature. The description adds value beyond that by disclosing the exact output fields (name, start time, state, entrant count, videogame, parent tournament, phases) and including a practical note about phase ids for use in get_event_sets. It does not contradict annotations and provides adequate behavioral context for a single-item get operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that front-loads the primary purpose ('Get one event') before listing the output fields and the sibling pointer. Every clause adds value, with no filler or repetition. It is efficiently structured and easily scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only, single-item retrieval with no output schema, the description covers the essentials: what is returned (detailed field list) and how the phase ids can be reused. It lacks explicit mention of error conditions or authorization requirements, but those are not significantly needed for a simple get. The output list is sufficiently descriptive for an agent to interpret results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides full descriptions for all three parameters (url, slug, eventId), with 100% schema_description_coverage. The description does not add any parameter-specific semantics or clarify the 'exactly one locator' constraint beyond what the schema states. Since the schema carries the burden, a baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a clear verb+resource: 'Get one event (bracket) of a tournament.' It explicitly distinguishes from siblings by specifying 'one event' and enumerates the exact data returned (name, start time, state, entrant count, videogame, parent tournament, phases). This strongly differentiates it from get_tournament_events (list) and get_event_sets (sets).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool by explaining what it returns and how the returned phase ids can be passed to get_event_sets. This implicitly guides agents on the workflow. However, it does not explicitly state when NOT to use it (e.g., 'if you need all events, use get_tournament_events'), so it falls short of the highest bar.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_event_entrantsGet event entrantsB
Read-only

List an event's entrants with their seed (initialSeedNum), players (gamer tags), and disqualification flag. Supports pagination or fetchAll.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg event URL, e.g. https://www.start.gg/tournament/genesis-9/event/ultimate-singles.
nameNoFilter entrants by name/tag (contains match).
pageNoPage number, 1-based. Default 1.
slugNoEvent slug in the form "tournament/<t>/event/<e>".
eventIdNoNumeric start.gg event id. Provide exactly one locator.
perPageNoResults per page, max 100. Default 50.
fetchAllNoFetch all pages (up to a safety cap) instead of one page. Ignores the page argument.

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true and the description aligns by describing a read-only listing. It adds behavioral details about pagination and fetchAll support, and identifies the output fields. However, it does not disclose the fetchAll safety cap or other operational limits, leaving partial transparency despite the annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences: the first states the purpose and output, the second the pagination/fetchAll functionality. All information is front-loaded with zero redundant words, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the core listing behavior and output, but omits the critical requirement to provide exactly one locator (url, slug, or eventId) and does not mention the fetchAll safety cap. Given the tool has 7 optional parameters and no required ones, this gap could lead to incorrect calls. It is adequate but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the baseline is 3. The description adds minimal parameter insight—it mentions 'Supports pagination or fetchAll' and the output fields, but does not clarify the locator requirement (exactly one of url/slug/eventId), which is only noted in the eventId description. No significant extra semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and the resource 'an event's entrants', and specifies the returned fields (seed, players, disqualification flag). It is specific enough to be distinguished from siblings like get_tournament_entrants by the 'event' scope, though it does not explicitly mention alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus sibling tools such as get_tournament_entrants or get_event_standings. The mention of pagination/fetchAll offers usage options but does not address alternative selection, so the agent gets no help in choosing between related tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_event_setsGet event setsA
Read-only

List an event's sets (matches) in a normalized form: round, state (COMPLETED/ACTIVE/...), both entrants with seeds and players, per-entrant score (-1 = DQ), winner, phase, and VOD URL when available. Filter by state, phaseIds (from get_event's phases, e.g. Top 8), round, or entrants.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg event URL, e.g. https://www.start.gg/tournament/genesis-9/event/ultimate-singles.
pageNoPage number, 1-based. Default 1.
slugNoEvent slug in the form "tournament/<t>/event/<e>".
stateNoSet states to include: names ("CREATED", "ACTIVE", "COMPLETED", ...) or raw integers (1-7). COMPLETED = finished sets.
hasVodNoOnly sets that have a VOD.
eventIdNoNumeric start.gg event id. Provide exactly one locator.
perPageNoResults per page, max 30. Default 20.
fetchAllNoFetch all pages (up to a safety cap) instead of one page. Ignores the page argument.
phaseIdsNoOnly sets in these phase ids (get_event lists phases).
showByesNoInclude bye sets. Default false.
sortTypeNostart.gg set sort order. RECENT = most recently completed first.
entrantIdsNoOnly sets involving these entrant ids.
roundNumberNoOnly sets with this numeric round (negative = losers bracket).

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint=true already provided, the description adds valuable context about the output format (normalized fields, score -1 for DQ) and the fact that it filters. It does not contradict the annotation and clarifies what data is returned, which helps the agent set expectations. No side effects or rate limits are mentioned, but the read-only nature is covered by annotations, so the description adds meaningful detail beyond the bare hint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, information-dense sentence that front-loads the core purpose and then packs in the output fields and filters. Every word earns its place; there is no fluff or redundancy. It is concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 13 parameters and no output schema, the description provides a thorough overview of the return format and filter options, which is crucial for an agent to know what to expect. It does not explicitly describe pagination behavior (e.g., fetchAll safety cap), but the input schema covers that per-parameter. Given the complexity, the description is quite complete, leaving only minor gaps like rate limits or error cases that are not typically in tool descriptions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all 13 parameters already have detailed descriptions. The tool description adds minimal parameter-specific meaning—it mentions filtering by state, phaseIds, round, and entrants, but the schema already explains these (e.g., entry for phaseIds states 'get_event lists phases'). The description does not clarify parameter formats or interactions beyond what the schema provides, so it lands at the baseline 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description begins with 'List an event's sets (matches)' which is a specific verb, resource, and scope. It enumerates the normalized fields (round, state, entrants, scores, winner, phase, VOD URL) and lists filters, making it unmistakable what this tool does and how it differs from siblings like get_player_sets or get_stream_queue.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies this is for listing sets for a specific event, and it references get_event for phaseIds, indicating a relationship. However, it does not explicitly state when to prefer this over get_player_sets or other sibling tools, nor does it exclude any conditions. The guidance is implied rather than explicit, so it's a solid 4.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_event_standingsGet event standingsA
Read-only

Get an event's standings (final or current placements), best first. Includes each entrant's seed so upsets are visible. Use perPage 8 for Top 8.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg event URL, e.g. https://www.start.gg/tournament/genesis-9/event/ultimate-singles.
pageNoPage number, 1-based. Default 1.
slugNoEvent slug in the form "tournament/<t>/event/<e>".
eventIdNoNumeric start.gg event id. Provide exactly one locator.
perPageNoResults per page, max 100. Default 25.
fetchAllNoFetch all pages (up to a safety cap) instead of one page. Ignores the page argument.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, and the description adds meaningful behavioral context: it states ordering (best first), includes seed data for visibility of upsets, and implies support for both final and current placements. These details go beyond the annotation and help an agent anticipate the output format.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences with no redundancy: the first states the core purpose, the second adds a distinctive detail (seed inclusion), and the third provides a practical usage tip. The most important info is front-loaded, making it easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only tool with a detailed schema (including locator alternatives and pagination controls), the description is reasonably complete. It does not describe the exact return structure, but since there is no output schema and the tool's purpose is straightforward, this is not a critical gap. The usage tip and detail about seeds round out the essential context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so all parameters already have descriptions in the schema. The tool description adds only the perPage usage tip, which is helpful but does not significantly expand on parameter meaning. Baseline of 3 is appropriate since the description adds marginal value over the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves an event's standings with final or current placements, ordered best first, and includes seed information. This is a specific verb+resource that distinguishes it from siblings like get_event or get_event_entrants, which serve different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a concrete usage hint ('Use perPage 8 for Top 8') that gives practical guidance. However, it does not explicitly mention alternatives or when not to use this tool compared to similar ones like get_event_entrants, though the purpose is clear enough to infer appropriate use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_playerGet playerA
Read-only

Get a start.gg player by numeric player id: gamer tag, team prefix, and linked user. Player ids appear in set/entrant results (players[].playerId).

ParametersJSON Schema
NameRequiredDescriptionDefault
playerIdYesNumeric start.gg player id.

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint: true, so the safety profile is covered. The description adds the returned fields (gamer tag, team prefix, linked user) but does not disclose failure modes, rate limits, or other behavioral traits. Since read-only behavior is annotated, a 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with zero fluff. The main action is front-loaded, and the additional context about id provenance is placed after the primary statement. Every sentence contributes necessary information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple get-by-id tool with readOnly annotation and no output schema, the description covers the essentials: what the tool returns and where to get the id. It could mention error behavior (e.g., player not found) but that is not crucial for a basic lookup. The description is complete enough for agents to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents playerId ('Numeric start.gg player id') at 100% coverage. The description adds extra value by explaining where to find valid player ids ('set/entrant results (players[].playerId)'), which goes beyond the schema and helps the agent invoke the tool correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get'), resource ('start.gg player'), and selection method ('by numeric player id'), and lists the key returned fields. This clearly distinguishes it from sibling tools like get_player_sets, which returns sets rather than player details.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides context on when to use the tool by explaining how to obtain the required playerId: 'Player ids appear in set/entrant results (players[].playerId).' This implies usage when you have a player id from those sources. It does not explicitly name alternatives or when-not-to-use, but the guidance is sufficient for a simple lookup tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_player_setsGet player setsA
Read-only

Get a player's recent sets across tournaments (most recent first), in the same normalized set form as get_event_sets, plus the event and tournament each set belongs to. Filter by set state (e.g. COMPLETED).

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, 1-based. Default 1.
stateNoSet states to include: names ("CREATED", "ACTIVE", "COMPLETED", ...) or raw integers (1-7). COMPLETED = finished sets.
perPageNoResults per page, max 20. Default 10.
playerIdYesNumeric start.gg player id.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

ReadOnlyHint=true already signals a safe read operation; the description adds behavioral specifics beyond that: ordering ('most recent first'), format normalization ('same normalized set form as get_event_sets'), and enrichment ('plus the event and tournament each set belongs to'). This gives the agent expectations for output shape and ordering without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The core purpose is front-loaded, and the comparison to get_event_sets and mention of included fields are stated efficiently. Every phrase earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only tool with full schema coverage and no output schema, the description covers all essential aspects: what it returns, ordering, format reference, and filter capability. It leaves nothing an agent needs to call it correctly, relying on the schema for parameter specifics and the annotations for safety.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds minimal value beyond schema: it references filtering by state (e.g., COMPLETED) which maps to the 'state' parameter, but does not elaborate on syntax or defaults. The schema already handles parameter documentation adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get'), a specific resource ('a player's recent sets across tournaments'), and key characteristics: most recent first, normalized set form, and inclusion of event/tournament. It clearly distinguishes from get_event_sets by comparing the form, making its purpose unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It implies usage context by referencing get_event_sets and specifying that sets are across tournaments (rather than within a single event). However, it does not explicitly state when to prefer this over get_event_sets or other alternatives. The guidance is clear enough for an agent to infer intent, but lacks explicit 'when not to use' directions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_stream_queueGet stream queueA
Read-only

Get a tournament's stream queue: each stream (source, channel name, derived URL for Twitch) with the sets currently assigned to it. Returns empty queues when nothing is queued. For the list of configured streams regardless of queue, use get_tournament.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg tournament URL, e.g. https://www.start.gg/tournament/genesis-9.
slugNoTournament slug, e.g. "genesis-9" or "tournament/genesis-9".
tournamentIdNoNumeric start.gg tournament id. Provide exactly one locator.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, and the description adds the non-obvious behavior of returning empty queues when nothing is queued. It also discloses the exact structure of each stream entry (source, channel name, derived URL), providing valuable context beyond the annotation's safety hint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no redundant information. The primary purpose and return details are front-loaded in the first sentence, and the alternative tool is named in the second. Every word earns its place with no padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the return format and the empty-queue behavior, which is important. It names the alternative tool for a different query. However, it does not mention pagination, sorting, or any filtering, but for a stream queue tool this is likely acceptable. Given no output schema, the description's detail is fairly complete, though a mention of the locator requirement could be redundant since schema already covers it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with each parameter described (url, slug, tournamentId) and the requirement to provide exactly one locator stated in the schema. The description adds no additional parameter semantics beyond what the schema already provides, so a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Get') and resource ('a tournament's stream queue'), and details the content (streams with source, channel name, derived URL and assigned sets). It also explicitly distinguishes from get_tournament by saying 'For the list of configured streams regardless of queue, use get_tournament,' which clearly differentiates it from a sibling tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly points to the alternative tool get_tournament for a different need (list of configured streams). It also clarifies that empty queues are returned, implying when to use this for queue status. This provides clear context and an explicit exclusion, making usage straightforward.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tournamentGet tournamentA
Read-only

Get one tournament's details: schedule, venue/location, registration, its events (with videogame and entrant counts), and its configured streams. Identify the tournament by numeric id, slug, or start.gg URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg tournament URL, e.g. https://www.start.gg/tournament/genesis-9.
slugNoTournament slug, e.g. "genesis-9" or "tournament/genesis-9".
tournamentIdNoNumeric start.gg tournament id. Provide exactly one locator.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the description does not need to restate safety. The description adds useful context about the return content (schedule, venue, events, streams) but does not disclose any edge cases, rate limits, or behavioral quirks beyond that. With annotations covering the read-only nature, a 3 is appropriate as the description provides some but not rich behavioral detail.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, dense sentence that front-loads the purpose and lists the detailed contents, then immediately covers the identification methods. There is zero filler, and every phrase contributes to the agent's understanding. Efficient and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read tool with a clear result description and no output schema, the description covers the essentials: what it returns and how to identify the tournament. The only minor gap is that it does not explicitly state that exactly one locator must be provided, but that constraint is present in the schema. Given no output schema and straightforward usage, this is nearly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so all three parameters have descriptive text, including the note that exactly one locator should be provided. The description reinforces the locator types (numeric id, slug, URL) but adds little beyond the schema. Baseline 3 is correct when the schema already documents parameters well.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it gets one tournament's details and enumerates the specific content: schedule, venue/location, registration, events with videogame and entrant counts, and streams. It names three locator types (numeric id, slug, URL). This distinguishes it from sibling tools like get_tournament_events (events only) and get_tournament_entrants (entrants only), so an agent can select it without opening other schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this is the general-purpose tool for full tournament details, but it does not explicitly state when to use it over alternatives like get_tournament_events. There are no exclusions or comparisons to siblings. The absence of explicit 'use this when...' guidance leaves some inference to the agent, though the clarity of the purpose partially compensates.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tournament_entrantsGet tournament participantsA
Read-only

List a tournament's registered participants (attendees) with gamer tags. Note: these are tournament-level registrations; for per-event entrants with seeding, use get_event_entrants instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg tournament URL, e.g. https://www.start.gg/tournament/genesis-9.
pageNoPage number, 1-based. Default 1.
slugNoTournament slug, e.g. "genesis-9" or "tournament/genesis-9".
perPageNoResults per page, max 100. Default 50.
gamerTagNoFilter participants by gamer tag (contains match).
tournamentIdNoNumeric start.gg tournament id. Provide exactly one locator.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The readOnlyHint annotation already declares the safe read-only nature, so the bar is lower. The description adds context by clarifying that these are tournament-level registrations (not per-event) and that the results include gamer tags, which is helpful beyond the annotation but not extensive. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no wasted words. The primary purpose is stated first, and the crucial usage distinction is delivered in the second sentence. Well-structured and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only list tool with a fully documented schema and a readOnlyHint annotation, the description covers the core need: what it lists and when to use it instead of get_event_entrants. It does not mention pagination or return format, but those are inferable from the schema (page/perPage) and the read-only nature, making minor gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the description need not repeat parameter details. The description does not add additional parameter guidance beyond what the schema provides, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the operation 'List' and the resource 'tournament's registered participants (attendees) with gamer tags', and differentiates it from the sibling get_event_entrants by noting the tournament-level scope. This is a clear, specific action and resource with sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly states when to use this tool versus get_event_entrants: 'these are tournament-level registrations; for per-event entrants with seeding, use get_event_entrants instead.' This provides clear when-to-use and alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tournament_eventsGet tournament eventsA
Read-only

List the events (brackets) of a tournament, optionally filtered to one videogame id. Use the returned event id or slug with get_event_entrants / get_event_sets / get_event_standings.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull start.gg tournament URL, e.g. https://www.start.gg/tournament/genesis-9.
slugNoTournament slug, e.g. "genesis-9" or "tournament/genesis-9".
videogameIdNoOnly events for this videogame id.
tournamentIdNoNumeric start.gg tournament id. Provide exactly one locator.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotation readOnlyHint=true already signals a safe, read-only operation. The description adds value by stating that the tool lists events (brackets) and can be filtered by videogame id, and that each returned event carries an id and slug suitable for later calls. This goes beyond the annotation by clarifying the output's role and the filtering capability, without contradicting the read-only nature.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, information-dense sentence. It front-loads the primary action ('List the events'), states the optional filter, and immediately provides actionable guidance on using the results. There is no fluff, repetition, or irrelevant details—every phrase contributes to the tool's purpose and usage.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description must convey what the tool returns and how to interpret it. It does so by stating 'List the events ... Use the returned event id or slug', implying each event has an id and slug. It also mentions the optional videogame filter. However, it does not mention pagination, ordering, or a default (unfiltered) behavior, which a list endpoint might require. Given the read-only annotation and the simplicity of the operation, this is a minor gap, so a 4 is appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%: all four parameters (url, slug, videogameId, tournamentId) have meaningful descriptions, including examples and the constraint to provide exactly one locator. The description's mention of 'optionally filtered to one videogame id' paraphrases the videogameId parameter but does not add new semantics. Per the rubric, with high schema coverage the baseline is 3, and the description does not exceed that.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a specific verb 'List' and a clear resource 'events (brackets) of a tournament', and notes an optional filter by videogame id. It also points to downstream tools (get_event_entrants / get_event_sets / get_event_standings) that use the returned event id or slug, which clearly differentiates it from sibling tools like get_tournament or get_event that operate at different granularities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: this tool is a precursor to retrieving entrants, sets, or standings using the event id or slug. It implicitly tells the agent when to use this tool (when you need a list of events for a tournament) and how to chain it with other tools. It does not explicitly state when NOT to use it (e.g., if you already have an event id, use get_event directly), but the direction to downstream tools gives sufficient practical guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_tournaments_by_videogameGet tournaments by videogameA
Read-only

List tournaments for a specific videogame id. timeframe selects upcoming (default), past, or all; combine with afterDate/beforeDate and location filters as needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, 1-based. Default 1.
perPageNoResults per page, max 100. Default 25.
addrStateNoState/province code as used by start.gg, e.g. "CA", "TX".
afterDateNoISO-8601 date/time (e.g. "2026-08-24" or "2026-08-24T00:00:00Z") or Unix epoch seconds.
timeframeNoWhich tournaments to include. Default upcoming.
beforeDateNoISO-8601 date/time (e.g. "2026-08-24" or "2026-08-24T00:00:00Z") or Unix epoch seconds.
countryCodeNoTwo-letter ISO country code, e.g. "US", "JP".
videogameIdYesVideogame id from search_videogames.

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the description does not need to cover safety. It adds the default for timeframe ('upcoming') and the ability to combine filters, but this mostly repeats schema info. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence with the primary action front-loaded, followed by filtering details. No wasted words; efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool is a list operation with a rich schema covering all parameters, the description is adequate. It does not mention pagination (page/perPage) or return format, but the absence of an output schema and the simplicity of the tool make this acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so parameters are well-documented. The description adds value by suggesting a combination pattern ('combine with afterDate/beforeDate and location filters as needed') and clarifies the default timeframe, which is reinforced but not redundant.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (list) and resource (tournaments for a specific videogame id), and the description clearly differentiates from siblings by requiring videogameId. The scope is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies when to use it (for a specific videogame) and describes optional filters, but does not explicitly name alternatives like get_upcoming_tournaments or search_tournaments. Clear enough to route an agent, though not exhaustive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_upcoming_tournamentsGet upcoming tournamentsA
Read-only

List tournaments that have not ended yet (including ones in progress), soonest first. Filter by videogame id (get it from search_videogames), country/state, and a time window in days.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, 1-based. Default 1.
perPageNoResults per page, max 100. Default 25.
addrStateNoState/province code as used by start.gg, e.g. "CA", "TX".
withinDaysNoOnly tournaments starting within this many days from now. Default 30.
countryCodeNoTwo-letter ISO country code, e.g. "US", "JP".
videogameIdNoVideogame id, e.g. 1386 for Smash Ultimate.
videogameIdsNo

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The readOnlyHint annotation already declares the operation is read-only, so the description doesn't need to cover that. It adds value by disclosing the result set criteria (not ended, including in-progress) and the sort order (soonest first), which are behavioral traits beyond the annotation. It also hints at the filter mechanics, making the tool's runtime behavior more predictable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences with zero filler. The primary purpose is front-loaded, and the filter capabilities are summarized in one compact sentence. Every word adds value, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 7 optional parameters and no output schema, the description covers the essential context: what is returned (upcoming tournaments), ordering, and available filters. It does not explicitly mention pagination defaults, but the schema describes those. The mention of the videogame id source and the time window covers the most critical parameters. It is sufficiently complete for an agent to understand the tool's core behavior without missing major aspects.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 86%, so the schema documents most parameters well. The description adds a specific hint on how to obtain the videogame id (from search_videogames), which is useful. However, it does not clarify pagination semantics or the optionality of all filters in full detail; the schema already covers that. The added value is marginal but positive.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists tournaments that have not ended (including in-progress), sorted soonest first, which precisely distinguishes it from search_tournaments or get_tournaments_by_videogame. The inclusion of the in-progress nuance and the mention of filters make the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the usage context (upcoming tournaments with optional filters) and even directs the agent to search_videogames for the videogame id, but it does not explicitly contrast with sibling tools like search_tournaments or get_tournaments_by_videogame. An agent might need to infer when to use this versus a search that could return ended tournaments.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

resolve_startgg_urlResolve start.gg URLA
Read-only

Turn a start.gg tournament or event URL (or slug) into internal ids and slugs. Example: "https://www.start.gg/tournament/genesis-9/event/ultimate-singles" -> { type: event, tournamentId, eventId, ... }. Use this first when the user pastes a start.gg link, then call the other tools with the returned ids.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesstart.gg URL, path, or slug to resolve.

TDQS

A4.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the description doesn't need to restate that. It adds a helpful output example but discloses no further behavioral traits (e.g., error handling, rate limits, or edge cases like invalid slugs). This is adequate but not rich beyond the annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences plus a compact example with zero filler. The core action is front-loaded, and the example is tightly scoped. Every element earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter resolver with no output schema, the description gives purpose, usage, and a return-shape hint via the example. It doesn't mention error behavior, but that is a minor gap given the tool's simplicity and the read-only annotation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the schema already describes 'URL, path, or slug'. The description adds specificity by stating 'tournament or event URL (or slug)' and provides a concrete example that clarifies the expected format, going slightly beyond the schema description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Turn... into'), a resource (start.gg URL/slug), and the exact output (internal ids and slugs). The concrete example clarifies the input and output shape, and it is clearly distinct from the sibling search/get tools, which operate on identifiers rather than URLs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to use this tool first when a start.gg link is pasted, then call other tools with the returned ids. This provides a clear workflow and sequencing, leaving no ambiguity about when to select this tool over alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_tournamentsSearch tournamentsA
Read-only

Search start.gg tournaments with flexible filters: name, videogame ids, country/state, date range (afterDate/beforeDate on start time), upcoming/past, open registration.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoTournament name to search for.
pageNoPage number, 1-based. Default 1.
pastNoOnly tournaments that already ended.
sortByNoSort order for tournaments.
perPageNoResults per page, max 100. Default 25.
regOpenNoOnly tournaments with open registration.
upcomingNoOnly tournaments that have not ended yet (start.gg's filter also includes tournaments currently in progress).
addrStateNoState/province code as used by start.gg, e.g. "CA", "TX".
afterDateNoOnly tournaments starting after this.
beforeDateNoOnly tournaments starting before this.
countryCodeNoTwo-letter ISO country code, e.g. "US", "JP".
videogameIdNoFilter to one videogame id.
videogameIdsNoFilter to several videogame ids.

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotation readOnlyHint=true already informs the agent this is a safe read operation. The description adds minimal behavioral context beyond the filter enumeration—no mention of pagination limits, result ordering defaults, or any side effects. Since the annotation covers the safety aspect and the description doesn't contradict it, a 3 is appropriate; extra behavioral detail would have been beneficial but isn't strictly necessary.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that states the core purpose first and then lists the filter classes. There is no fluff or redundancy; every element earns its place. It is concise yet information-dense, ideal for agent consumption.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 13 parameters and no output schema, the description covers the essential filter categories without enumerating each parameter. It omits details like default sorting or pagination behavior, but those are documented in the input schema. The description is sufficient for an agent to understand the tool's scope and select appropriate filters, though it could mention the result shape or any relationship to streaming tournaments. Slight room for improvement, but not incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with each parameter documented. The description adds value by grouping filters into semantic categories ('date range (afterDate/beforeDate on start time)', 'upcoming/past', 'open registration'), which helps the agent quickly infer combinational intent. This grouping goes beyond the individual descriptions and slightly elevates the score above the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states 'Search start.gg tournaments' with a clear verb and resource, and enumerates the flexible filter categories (name, videogame ids, location, date range, upcoming/past, registration). This makes the tool's purpose unambiguous and distinguishes it from sibling tools that target specific subsets like upcoming or per-videogame tournaments.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly frames the tool as a general, filter-driven search ('flexible filters'), implying it is the go-to for broad tournament discovery. However, it does not explicitly state when to prefer this over the specific sibling tools (e.g., get_upcoming_tournaments), leaving the routing decision partially to the agent. This is a minor gap rather than misleading guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_videogamesSearch videogamesA
Read-only

Search start.gg's videogame catalog by name and get videogame ids. Use this first to find the id for a game (e.g. "Super Smash Bros. Ultimate" -> 1386), then pass that id to tournament discovery tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesGame name to search for, e.g. "Street Fighter 6".
pageNoPage number, 1-based. Default 1.
perPageNoResults per page, max 100. Default 25.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the description does not repeat that. It adds value by disclosing the return type (ids) and providing an example mapping, which enriches understanding without contradicting annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences that front-load the purpose and usage, with no redundant words. Every sentence earns its place and the example adds immediate clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

A simple search tool with read-only annotation, fully documented parameters, and a description covering purpose, usage, and next step. Nothing an agent needs to call it correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with all parameters described (name, page, perPage). The description adds a concrete example for the name parameter and confirms the pagination defaults are not explained beyond schema, which is the baseline for fully documented schemas.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (search), resource (start.gg's videogame catalog), and output (videogame ids). It clearly distinguishes itself from the sibling tournament tools and positions itself as a prerequisite step for those tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs the agent to use this tool first to obtain an id and then pass that id to tournament discovery tools, including a concrete example. This gives clear when-to-use guidance and implies the alternative tools that follow.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 15 tool updatesv0.1.0
    • First observedget_event
    • First observedget_event_entrants
    • First observedget_event_sets
    • First observedget_event_standings
    • First observedget_player
    • First observedget_player_sets
    • First observedget_stream_queue
    • First observedget_tournament
    • First observedget_tournament_entrants
    • First observedget_tournament_events
    • First observedget_tournaments_by_videogame
    • First observedget_upcoming_tournaments
    • First observedresolve_startgg_url
    • First observedsearch_tournaments
    • First observedsearch_videogames

TDQS

A4.2/5.0

Scored across 15 tools

Disambiguation5/5

Each tool targets a distinct resource and action, with clear differentiators even among similar tools (e.g., search_tournaments vs. get_upcoming_tournaments). Descriptions explicitly note when to use each, such as tournament-level vs. event-level entrants, preventing confusion.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (search_, get_, resolve_). The verbs are simple and uniform, making the set highly predictable and easy to navigate.

Tool Count5/5

With 15 tools, the server is well-scoped for the start.gg domain, covering search, tournament details, events, players, streams, and URL resolution. Each tool has a clear purpose, and the count is within the ideal range for coherence without bloat.

Completeness5/5

The tool set provides comprehensive read-only coverage of the start.gg platform, including videogame search, tournament discovery, detailed tournament and event queries, entrant/standings/set retrieval, player history, stream queues, and URL resolution. No obvious gaps for the apparent use case.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    Provides access to Chess.com player data, game records, and public information through standardized MCP interfaces, allowing AI assistants to search and analyze chess information.
    10
    88
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    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.
    1
    Apache 2.0
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to query the FACEIT platform for players, matches, hubs, and tournaments through typed MCP tools generated from the FACEIT Data API v4.
    64
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables querying Chess.com public data including player profiles, stats, games, and club information through natural language.
    9
    2 npm
    MIT