liquipedia-dota2-mcp
Provides read-only access to sourced Dota 2 tournament, team, player, and match data from Liquipedia, including metadata, rosters, schedules, and results with revision-level source metadata.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@liquipedia-dota2-mcpShow me the match schedule for The International 2024"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
liquipedia-dota2-mcp
Read-only MCP server and Codex skill for sourced Dota 2 tournament, team, player, schedule, and result data from Liquipedia.
This is an unofficial community project. It is not affiliated with or endorsed by Liquipedia, Team Liquid, Valve, or OpenAI.
Features
Five structured MCP tools for entity search, tournament, team, player, and match queries.
Revision-level source metadata, coverage indicators, and explicit parse warnings.
Persistent SQLite cache, duplicate-request coalescing, and Liquipedia-compliant request queues.
Local
stdiotransport for Codex, ChatGPT desktop, Claude Desktop, and other MCP clients.Bundled
liquipedia-dota2Skill underskills/liquipedia-dota2.
Related MCP server: Guild Wars 1 MCP
Requirements
Node.js 22 or newer. The server uses Node's built-in SQLite module and does not require a native dependency build.
A custom
LIQUIPEDIA_USER_AGENTcontaining a project name, version, and contact URL or email.
Example:
MyDotaAssistant/1.0 (developer@example.com)The server refuses to start without a valid identifying User-Agent. It only sends automated requests to https://liquipedia.net/dota2/api.php; it does not scrape rendered website pages.
Install and run
After the package is published to npm:
$env:LIQUIPEDIA_USER_AGENT = "MyDotaAssistant/1.0 (developer@example.com)"
npx -y liquipedia-dota2-mcpDirectly from GitHub, without npm publishing:
$env:LIQUIPEDIA_USER_AGENT = "MyDotaAssistant/1.0 (developer@example.com)"
npx -y github:Mooooooon/liquipedia-dota2-mcpOn npm 12 and newer, git package installs are disabled by default, so add --allow-git=root:
$env:LIQUIPEDIA_USER_AGENT = "MyDotaAssistant/1.0 (developer@example.com)"
npx -y --allow-git=root github:Mooooooon/liquipedia-dota2-mcpdist/ is built automatically on install (prepare on npm 11 and earlier, pack-time prepack on npm 12), so the installer needs no build step.
From a source checkout:
npm install
npm run build
$env:LIQUIPEDIA_USER_AGENT = "MyDotaAssistant/1.0 (developer@example.com)"
node dist/cli.jsLogs use stderr so stdout remains a valid MCP transport.
Codex setup
Codex CLI and the ChatGPT desktop app share local MCP configuration. Add the published package with:
codex mcp add liquipedia-dota2 --env "LIQUIPEDIA_USER_AGENT=MyDotaAssistant/1.0 (developer@example.com)" -- npx -y liquipedia-dota2-mcpOr add this to ~/.codex/config.toml:
[mcp_servers.liquipedia_dota2]
command = "npx"
args = ["-y", "liquipedia-dota2-mcp"]
startup_timeout_sec = 20
tool_timeout_sec = 120
[mcp_servers.liquipedia_dota2.env]
LIQUIPEDIA_USER_AGENT = "MyDotaAssistant/1.0 (developer@example.com)"Install the bundled Skill by copying skills/liquipedia-dota2 into either the repository's .agents/skills directory or the user's .agents/skills directory. The Skill intentionally has no remote MCP dependency URL; configure the local server separately.
Claude Desktop setup
Add the server to the Claude Desktop MCP configuration:
{
"mcpServers": {
"liquipedia-dota2": {
"command": "npx",
"args": ["-y", "liquipedia-dota2-mcp"],
"env": {
"LIQUIPEDIA_USER_AGENT": "MyDotaAssistant/1.0 (developer@example.com)"
}
}
}
}Tools
Tool | Purpose |
| Find tournament, team, and player candidates. |
| Read tournament metadata, participants, and placements. |
| Read team metadata, roster, and coaches. |
| Read player identity and team history. |
| Read match schedule/result rows for a confirmed tournament or team. |
Every call returns data, section-level coverage, warnings, source, and a typed error. A section marked unavailable means the current parser could not establish the data; it does not mean that the source contains no records.
Cache and limits
The server enforces minimum intervals of 2.1 seconds for ordinary MediaWiki requests and 31 seconds for action=parse. These minimums cannot be weakened through environment variables. Defaults are:
Search: 6 hours
Team/player: 24 hours
Upcoming or ongoing tournament: 30 minutes
Completed tournament: 7 days
Match list: 15 minutes
Set LIQUIPEDIA_CACHE_PATH to choose the SQLite file. When Liquipedia is unavailable, an expired cache entry may be returned with source.is_stale: true and its stale age.
Development
npm run check
npm test
npm run build
npm pack --dry-runDefault tests are completely offline. An opt-in live smoke test performs a small number of compliant API calls:
$env:LIQUIPEDIA_LIVE_TEST = "1"
$env:LIQUIPEDIA_USER_AGENT = "MyDotaAssistant/1.0 (developer@example.com)"
npm run test:liveData and licensing
Project code is MIT licensed. Liquipedia text/data is separately provided under CC BY-SA 3.0 and remains subject to Liquipedia's API terms. Tool results include attribution, license, source page, revision, and fetch time. Media such as logos and player photographs is not downloaded or redistributed.
See Liquipedia API terms before deploying or modifying request behavior.
Available Tools
5 toolsget_dota2_playerGet Dota 2 playerARead-onlyIdempotent
Get player identity, current team, role, aliases, and team history from an exact Liquipedia canonical title returned by search_dota2_entities.
| Name | Required | Description | Default |
|---|---|---|---|
| canonical_title | Yes | Exact canonical_title returned by search_dota2_entities. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| data | Yes | |
| error | Yes | |
| source | Yes | |
| coverage | Yes | |
| warnings | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, covering safety and idempotency. The description adds the source constraint (canonical title from search) but no further behavioral traits (e.g., auth, rate limits). No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, well-structured sentence front-loads the purpose and source. Every word contributes meaningful information; no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, rich annotations, output schema present), the description fully covers what the agent needs: what data is returned (identity, team, role, etc.) and the prerequisite relationship to search_dota2_entities. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the description essentially repeats the schema's parameter explanation ('exact canonical_title returned by search_dota2_entities'). It adds no new meaning beyond the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool retrieves 'player identity, current team, role, aliases, and team history' using a specific source. It clearly distinguishes from sibling tools like search_dota2_entities (search) and get_dota2_team (different resource).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description specifies the required input is an 'exact Liquipedia canonical title returned by search_dota2_entities', implying a prerequisite and linking to the relevant sibling. It lacks explicit when-not-to-use or alternative scenarios but provides adequate guidance for correct invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dota2_teamGet Dota 2 teamARead-onlyIdempotent
Get team metadata, roster, and coaches from an exact Liquipedia canonical title returned by search_dota2_entities.
| Name | Required | Description | Default |
|---|---|---|---|
| canonical_title | Yes | Exact canonical_title returned by search_dota2_entities. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| data | Yes | |
| error | Yes | |
| source | Yes | |
| coverage | Yes | |
| warnings | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, fully covering the safety profile. The description adds value by specifying exactly what data is retrieved (metadata, roster, coaches), which annotations do not cover. No contradictions found.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence (15 words) that is front-loaded with the action and resource. Every word earns its place; there is no repetition or fluff. It is maximally concise while still being informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one required parameter, output schema exists, rich annotations), the description covers the essential: what it returns, how to get the input, and the prerequisite. It omits details like rate limits or authentication, but those are not critical for a read-only, idempotent tool. The output schema handles return format, so completeness is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear description of canonical_title. The description reinforces the schema's message ('from an exact Liquipedia canonical title returned by search_dota2_entities') but does not add new details beyond that. Baseline of 3 is appropriate given the high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and resource ('team metadata, roster, and coaches'), clearly distinguishing this tool from siblings like get_dota2_player or get_dota2_tournament. It also specifies the exact source (Liquipedia canonical title from search_dota2_entities), making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description ties the tool directly to search_dota2_entities, implying that the agent should first obtain a canonical title via that search tool. This provides clear context for when to use this tool. However, it does not explicitly state when not to use it or mention alternatives, though the differentiation from sibling tools is clear from the scope.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dota2_tournamentGet Dota 2 tournamentARead-onlyIdempotent
Get tournament metadata, participants, and placements from an exact Liquipedia canonical title. Does not load matches; use list_dota2_matches when schedules or results are requested.
| Name | Required | Description | Default |
|---|---|---|---|
| canonical_title | Yes | Exact canonical_title returned by search_dota2_entities. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| data | Yes | |
| error | Yes | |
| source | Yes | |
| coverage | Yes | |
| warnings | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare this tool is read-only, idempotent, non-destructive, and open-world. The description adds useful context about what data is included (metadata, participants, placements) and explicitly excludes match loading. This extra behavioral detail beyond annotations is valuable, though the return format is covered by the output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, zero wasted words. The first sentence states the purpose and input requirement, and the second sentence provides a critical exclusion and sibling tool alternative. Highly efficient for the information density.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (1 required parameter, no enums, simple input), high schema coverage (100%), and presence of an output schema, the description is complete. It covers what the tool returns, what it requires, and what it does not do, leaving no gaps for an AI agent to guess.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with only one parameter (canonical_title) already described as 'Exact canonical_title returned by search_dota2_entities.' The description reinforces that it must be an exact Liquipedia canonical title, which adds clarity beyond the schema. A baseline of 3 is appropriate, and the explicit linkage to search_dota2_entities earns a 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies what the tool does: 'Get tournament metadata, participants, and placements' from a specific resource (Liquipedia canonical title). It also distinguishes itself from sibling tools by explicitly stating what it does not load (matches) and pointing to list_dota2_matches for that purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool: when metadata, participants, and placements are needed from an exact canonical title. It also warns against using it for match data and directs to the alternative sibling tool list_dota2_matches for schedules or results.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_dota2_matchesList Dota 2 matchesARead-onlyIdempotent
List schedule or result rows for one exact tournament or team page. This is the expensive match-specific lookup; use only when the user asks about matches, schedules, scores, or results.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ||
| from | No | ||
| limit | No | ||
| status | No | ||
| scope_type | Yes | ||
| canonical_title | Yes | Exact canonical_title returned by search_dota2_entities. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| data | Yes | |
| error | Yes | |
| source | Yes | |
| coverage | Yes | |
| warnings | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already provide readOnlyHint, idempotentHint, and destructiveHint=false. The description adds valuable behavioral context by labeling the tool as 'expensive', which guides the agent on cost implications beyond what annotations capture.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. The first sentence states the purpose and scope, the second adds usage guidance and cost context. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While an output schema exists (reducing need to describe return values), the description still lacks coverage of the optional filtering parameters (to, from, limit, status). For a tool with 6 parameters and 2 required, the minimal description leaves gaps in how to construct correct invocations, especially for date ranges and result limits.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With only 17% schema description coverage (only canonical_title has a description), the description should compensate but does not. It mentions 'for one exact tournament or team page' which hints at scope_type and canonical_title, but completely omits explanations for the other four parameters (to, from, limit, status). The agent must infer their meaning from names alone, which is insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists schedule or result rows for one exact tournament or team page. This is a specific verb-resource combo that distinguishes it from sibling tools like search_dota2_entities (which searches broadly) or get_dota2_tournament (which fetches tournament details).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'use only when the user asks about matches, schedules, scores, or results' and notes it's an 'expensive match-specific lookup'. This provides clear context for when to invoke, though it does not explicitly list exclusions or name alternatives beyond the implied contrast with siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_dota2_entitiesSearch Dota 2 entitiesARead-onlyIdempotent
Search Liquipedia for Dota 2 tournaments, teams, or players. Use this before a detail tool when an exact canonical title is not already known. Multiple candidates require user confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Human-readable name or alias. | |
| types | No | Optional entity type filter. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| data | Yes | |
| error | Yes | |
| source | Yes | |
| coverage | Yes | |
| warnings | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, which the description complements by detailing that it returns results that may require user confirmation. There is no contradiction. The description adds behavioral context about requiring user confirmation for multiple candidates and its role as a precursor to detail tools, going slightly beyond annotation coverage. A near-perfect score is warranted as it adds value without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the core purpose, and every sentence adds value. No filler or redundant wording. It uses the available space efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists (covering return format) and annotations adequately describe core behavioral traits (read-only, open-world, idempotent), the description is complete for the tool's complexity. It specifies the search source, when to use it, and a key caveat (user confirmation). Nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 67%, meaning two of three parameters have descriptions in the schema: 'query' is described as 'Human-readable name or alias' and 'types' as 'Optional entity type filter.' The description adds general context around parameter usage (e.g., the intent of the tool), but is somewhat redundant with schema-level descriptions. With moderate schema coverage, the description provides minimal extra detail, so a 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches Liquipedia for Dota 2 tournaments, teams, or players, using a specific verb ('Search') and resource ('Liquipedia for Dota 2 entities'). It distinguishes itself from siblings by noting it is to be used before a 'detail tool' when an exact title is unknown, effectively differentiating from the get_dota2_* tools that retrieve specific entities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use ('before a detail tool when an exact canonical title is not already known') and implies when not to use (when the exact title is known, use a detail tool instead). It also warns that multiple candidates require user confirmation, providing clear context for decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.1.0- First observed
get_dota2_player - First observed
get_dota2_team - First observed
get_dota2_tournament - First observed
list_dota2_matches - First observed
search_dota2_entities
TDQS
Each tool targets a distinct purpose: search for entities, then retrieve specific details for tournaments, teams, players, or matches. There is no overlap, and the descriptions clearly differentiate when to use each one.
All tools follow a consistent verb_noun pattern in snake_case (e.g., search_dota2_entities, get_dota2_tournament, list_dota2_matches). The naming is predictable and easy to understand.
With 5 tools, the server is well-scoped for a focused domain (Dota 2 esports data). It provides essential operations without unnecessary bloat or missing core functionality.
The toolset covers the full lifecycle of querying Dota 2 entities: search to find canonical titles, then retrieve details for tournaments, teams, players, and matches. There are no obvious gaps for a read-only information retrieval server.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Read-only MCP server for The Quiet Protocol's engines, benchmarks, proof, and business data.
Read-only MCP for the Eco game wiki: search, Markdown pages, and wiki_* lookups. No keys, no writes.
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Read-only MCP server for turva.dev, an agent-readiness audit and advisory service.
Related MCP Servers
- AlicenseBqualityCmaintenanceModel Context Protocol server that enables LLMs and AI assistants to retrieve real-time Dota 2 statistics, match data, player information, and game metrics through a standardized interface.178MIT
- AlicenseBqualityAmaintenanceRead-only MCP server for public Guild Wars 1 sources (wiki, builds, YouTube, Reddit) and optional local install inventory.142MIT
- AlicenseAqualityCmaintenanceProvides MCP tools to query Liquipedia esports data (matches, teams, players, tournaments, placements, standings) via the Liquipedia v3 API and MediaWiki action API.8MIT
- AlicenseAqualityAmaintenanceProvides read-only access to Old School RuneScape Wiki data, returning structured content with source provenance via MCP tools for searching pages, items, monsters, quests, shops, and drop sources.1028MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Mooooooon/liquipedia-dota2-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server