Skip to main content
Glama
williamcodes

speedrun-mcp

by williamcodes

get_leaderboard

Read-only

Fetch ranked speedrun leaderboards for a game and category, with player names and subcategory labels resolved. Filter by level, region, platform, timing, or date to view top runs.

Instructions

Get a ranked leaderboard for a game/category (full-game or individual level).

Players, subcategory labels and the category name are resolved for you. For subcategory filters, discover ids with list_variables first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topNoReturn the top N places.
dateNoISO date; only runs on or before this date.
gameYesGame id or abbreviation.
levelNoLevel id for an individual-level (IL) leaderboard.
regionNoRegion id to filter by.
timingNoSort by 'realtime', 'realtime_noloads', or 'ingame'.
categoryYesCategory id or URL slug (e.g. '120_Star').
platformNoPlatform id to filter by.
emulatorsNoTrue = emulators only, False = real devices only.
variablesNoSubcategory/variable filters as {variable_id: value_id}.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.2

TDQS

A3.9/5.0
Behavior4/5

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

With readOnlyHint and openWorldHint already declared, the description adds valuable behavior context: it states that players, subcategory labels, and category names are resolved automatically. This is genuinely useful beyond the annotations, though it stops short of describing pagination or response structure.

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 the core purpose front-loaded. Every sentence earns its place: the purpose, the resolution behavior, and the subcategory-filter prerequisite. No filler or redundancy.

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 fully described 10-parameter schema, the description provides enough context to call it correctly: required game/category, optional level, and the workflow for variables. The main gap is not contrasting it with closely related leaderboard/list siblings, but the annotation and schema coverage carry much of the burden.

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 the baseline is 3. The description adds extra meaning by linking 'full-game or individual level' to the level parameter and by explaining that subcategory filters require variable ids discovered via list_variables. This goes beyond the schema's bare descriptions.

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 'Get' and the resource: a ranked leaderboard for a game/category, including full-game or individual level. It is unambiguous but does not explicitly distinguish it from similar siblings like get_world_record or get_game_records.

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?

It gives a useful workflow hint: for subcategory filters, discover ids with list_variables first. However, it does not explain when to prefer get_leaderboard over get_world_record or get_game_records, nor does it state any exclusions.

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