chirpon9/riot-docs-mcp
If you are the rightful owner of riot-docs-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The MCP server is designed to facilitate seamless communication and interaction between different model contexts, leveraging the capabilities of Smithery CLI and LLM technology.
riot-docs
MCP server providing access to Riot Games API documentation for League of Legends, Teamfight Tactics, Valorant, Legends of Runeterra, and more.
Features
This server provides two tools to access Riot API documentation:
Tools
-
list_available_docs()- Lists all 33 available Riot API endpoint documentation files -
get_endpoint_docs(filename: str)- Retrieves the full documentation for a specific endpoint- Example:
get_endpoint_docs("match-v5.md") - Returns complete API documentation including endpoints, parameters, and response formats
- Example:
Installation
Usage with claude desktop
{
"mcpServers": {
"riot-docs": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/riot-docs",
"run",
"riot_docs_server"
]
}
}
}
Option 2:
Mac:
{
"mcpServers": {
"riot-docs-mcp": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@chirpon9/riot-docs-mcp",
"--key",
"{SMITHERY API KEY}"
]
}
}
}
Windows:
{
"mcpServers": {
"riot-docs-mcp": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@smithery/cli@latest",
"run",
"@chirpon9/riot-docs-mcp",
"--key",
"{smithery api key}"
]
}
}
}