Skip to main content
Glama
hkaanengin

opendota-mcp-server

by hkaanengin

get_records

Retrieve top world record performances for Dota 2 stats like kills, GPM, and match duration. Each record includes hero, match ID, and exact score.

Instructions

Get top world record performances in a specific statistical field.

Use this when users ask:

  • "What's the world record for most kills in a game?"

  • "Show me the highest GPM ever achieved"

  • "What's the longest Dota 2 game ever?"

  • "Who has the world record for [stat]?"

  • "What are the top performances for [stat]?"

  • "Has anyone ever gotten 50+ kills?"

Returns the all-time best performances globally for the specified metric, including match details, hero used, and player information. These are the absolute highest values ever recorded in tracked matches.

Supports natural language field names with fuzzy matching and variations.

Args: field: Statistical field to get records for. Accepts variations like: - Combat: "kills", "deaths", "assists", "kda" - Economy: "gold_per_min", "xp_per_min", - Farming: "last_hits", "denies" - Damage: "hero_damage", "hero_healing", "tower_damage" - Other: "duration"

Returns: List of top record performances (sorted by field value, descending), each containing: - match_id (int): Match ID for the record game - start_time (str): Date of the match (e.g., "December 09, 2024") - hero_id (int): Hero ID used in the record - hero_name (str): Hero's display name (e.g., "Rubick", "Anti-Mage") - score (float): The record value achieved (e.g., 45 kills, 1245 GPM) - Additional match details may be included depending on the field

Common queries: - Kill record: get_records("kills") - GPM record: get_records("gpm") or get_records("gold_per_min") - Longest game: get_records("duration")

Example: get_records("kills") -> [ { "match_id": 1234567890, "start_time": "March 15, 2024", "hero_id": 1, "hero_name": "Anti-Mage", "score": 45.0, ... }, { "match_id": 9876543210, "start_time": "January 08, 2024", "hero_id": 86, "hero_name": "Rubick", "score": 43.0, ... }, ... ]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It transparently states that it 'Supports natural language field names with fuzzy matching and variations', and that 'Additional match details may be included depending on the field', revealing behavioral nuances. It also clarifies the scope as 'the absolute highest values ever recorded in tracked matches'. However, it does not explicitly state that the operation is read-only or safe, which a fully transparent description would include.

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

Conciseness4/5

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

The description is long but well-structured: it front-loads the purpose, then gives usage examples, parameter details, return format, common queries, and a full example. Every section adds value, though it could be slightly more concise. The example output is helpful but not essential.

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 is highly complete for a single-parameter lookup tool: it thoroughly explains the parameter, describes the return object with field names and types, and provides a realistic example. It does not cover error cases (e.g., unknown field) or specify a limit on the number of records returned, which are minor gaps.

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

Parameters5/5

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

The schema provides only the parameter name 'field' with a generic string type and 0% description coverage. The description fully compensates by listing accepted field categories (Combat, Economy, Farming, Damage, Other) with specific values like kills, gold_per_min, last_hits, and duration, and by explaining that variations like 'gpm' and 'gold_per_min' are accepted. This goes far beyond 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 begins with 'Get top world record performances in a specific statistical field', which is a specific verb+resource combination that clearly defines the tool's function. It further distinguishes the tool from siblings by focusing on 'world record' and 'all-time best performances', and it provides multiple example user queries that uniquely map to this tool.

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 gives explicit usage context with 'Use this when users ask:' followed by six concrete example questions. It also includes a 'Common queries' section with specific calls, providing clear guidance on when to invoke the tool. However, it does not explicitly mention when not to use it or name alternative tools, so it stops short of a 5.

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

Install Server

Other Tools

Latest Blog Posts

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/hkaanengin/opendota-mcp-server'

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