Skip to main content
Glama
williamcodes

speedrun-mcp

by williamcodes

list_regions

Read-only

Retrieve speedrun.com region IDs and names, such as USA/NTSC or EUR/PAL, to use as the region filter when querying leaderboards.

Instructions

List speedrun.com regions (e.g. USA/NTSC, EUR/PAL) with their ids and names.

Use a returned id as the region filter for get_leaderboard (the leaderboard API requires the region id, not its name).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.2

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already indicate read-only and open world. The description adds context that the returned ids are used for leaderboard filtering, which is helpful but not a behavioral disclosure about the tool itself. 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?

Two concise sentences, front-loaded with the primary function, followed by a usage note. No redundant information.

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 simple list tool with an output schema present, the description fully explains the purpose and how to use the output (id for leaderboard). No missing information needed for correct invocation.

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 input schema is empty (no parameters), so the description does not need to explain parameters. Baseline 4 for zero-parameter tools.

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 specifically that it lists speedrun.com regions with ids and names. The verb 'list' and resource 'regions' are clear, and it distinguishes from siblings which target different resources (games, categories, etc.).

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?

Provides a concrete usage example: using the returned id as the region filter for get_leaderboard, and notes that the leaderboard API requires the id, not the name. However, it does not explicitly state when to use this tool vs alternatives, though the alternatives are for different resources.

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