What is the Riot Games MCP server?
Riot Games API: accounts, summoners, matches, league entries, champion mastery.
How to install Riot Games
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"riot-games": {
"url": "https://gateway.pipeworx.io/riot-games/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"riot-games": {
"serverUrl": "https://gateway.pipeworx.io/riot-games/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"riot-games": {
"type": "http",
"url": "https://gateway.pipeworx.io/riot-games/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"riot-games": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/riot-games/mcp"
]
}
}
}Claude Code
claude mcp add --transport http riot-games https://gateway.pipeworx.io/riot-games/mcp