Skip to main content
Glama
williamcodes

speedrun-mcp

by williamcodes

get_series

Read-only

Look up a speedrun.com series by ID or abbreviation to see its details and games; paginate results and use returned game IDs for subsequent category and leaderboard queries.

Instructions

Get a series' details and (by default) the games it contains.

The returned game ids/abbreviations feed the other tools (get_game, list_categories, get_leaderboard).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seriesYesSeries id or abbreviation.
game_limitNoMax games to list.
game_offsetNoStart offset for the games page.
include_gamesNoAlso list the games in the series.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.2

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. Description adds that games are included by default and that returned ids feed other tools, which is useful behavioral context beyond annotations. No mention of pagination or output format, but given annotations, this is acceptable.

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, front-loaded with the main purpose, no redundant information. Efficient.

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 well-described schema and read-only annotations, the description covers the core use case and the relationship to downstream tools. Does not explicitly mention alternatives, but the context is sufficient for an agent to decide.

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 provides full descriptions for all 4 parameters (100% coverage). Description adds minimal param semantics beyond 'by default' for include_games, which is already in schema. Baseline 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?

States a specific verb (Get) and resource (series) and clarifies that it also returns games by default. Differentiates from search_series (which searches) and get_game (which gets a game) by noting the ids feed other tools.

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 usage when you have a series id/abbreviation and need its games to feed into get_game, list_categories, get_leaderboard. Does not explicitly exclude alternatives but gives clear context. Lacks explicit 'when not to use' guidance.

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