Skip to main content
Glama

Unofficial WCA MCP Server

by YuchengMaUTK

get_competition_event_results

Retrieve competition results for a specific speedcubing event, allowing filtering by round and optional inclusion of detailed solve times.

Instructions

Get results for a specific event within a WCA competition.

Returns focused results data for a single event in a competition. By default, returns only Final round results for better LLM processing.

Args: competition_id: WCA competition ID (e.g., "WC2025", "CubingUSANationals2024") event_id: WCA event ID (e.g., "333" for 3x3x3 Cube, "222" for 2x2x2, "333bf" for 3x3x3 Blindfolded, "444" for 4x4x4) round: Specific round to filter by (default: "Final"). Use "all" for all rounds, or specify: "Final", "Semi Final", "Second round", "First round" limit: Maximum number of results to return (optional) include_solves: Whether to include detailed solve times (default: False)

Returns: Filtered results data including: - Competitor performances for the specified round - Position, best single, and average times - Optionally detailed solve breakdowns

Example: get_competition_event_results("WC2025", "333") - Final round only (16 results) get_competition_event_results("WC2025", "333", round="all") - All rounds (2490 results) get_competition_event_results("WC2025", "333", limit=10) - Top 10 from Final

Input Schema

NameRequiredDescriptionDefault
competition_idYes
event_idYes
include_solvesNo
limitNo
roundNoFinal

Input Schema (JSON Schema)

{ "properties": { "competition_id": { "title": "Competition Id", "type": "string" }, "event_id": { "title": "Event Id", "type": "string" }, "include_solves": { "default": false, "title": "Include Solves", "type": "boolean" }, "limit": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Limit" }, "round": { "default": "Final", "title": "Round", "type": "string" } }, "required": [ "competition_id", "event_id" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/YuchengMaUTK/unofficial-wca-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server