OP.GG MCP Server
A Model Context Protocol implementation that enables AI agents to retrieve game data from OP.GG for League of Legends, Teamfight Tactics, Valorant, and esports through function calling.
README
OP.GG MCP Server
The OP.GG MCP Server is a Model Context Protocol implementation that seamlessly connects OP.GG data with AI agents and platforms. This server enables AI agents to retrieve various OP.GG data via function calling.
Overview
This MCP server provides AI agents with access to OP.GG data through a standardized interface. It offers a simple way to connect to our remote server (https://mcp-api.op.gg/mcp/sse), allowing for easy installation and immediate access to OP.GG data in a format that's easily consumable by AI models and agent frameworks.
Features
The OP.GG MCP Server currently supports the following tools:
League of Legends
- lol-champion-analysis: Fetch analysis data for a specific champion
- lol-champion-leader-board: Fetch that champion's rank
Esports (League of Legends)
- esports-lol-schedules: Get upcoming LoL match schedules
- esports-lol-team-standings: Get team standings for a LoL league
Teamfight Tactics (TFT)
- tft-meta-trend-deck-list: TFT deck list tool for retrieving current meta decks
- tft-meta-item-combinations: TFT tool for retrieving information about item combinations and recipes
- tft-champion-item-build: TFT tool for retrieving champion item build information
- tft-recommend-champion-for-item: TFT tool for retrieving champion recommendations for a specific item
- tft-play-style-comment: This tool provides comments on the playstyle of TFT champions
Valorant
- valorant-meta-maps: Valorant map meta data
- valorant-meta-characters: Valorant character meta data
- valorant-leaderboard: Fetch Valorant leaderboard by region
- valorant-agents-composition-with-map: Retrieve agent composition data for a Valorant map
- valorant-characters-statistics: Retrieve character statistics data for Valorant, optionally filtered by map
- valorant-player-matches: Retrieve match history for a Valorant player using their game name and tag line
Usage
The OP.GG MCP Server can be used with any MCP-compatible client.
Installing via Smithery
To install OP.GG MCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @opgginc/opgg-mcp --client claude
Adding to MCP Configuration
Note: If you've cloned the repository or made any changes to the code, you may need to build the project first by running npm run build before adding it to your MCP configuration.
For Claude Desktop
To add this server to your Claude Desktop MCP configuration, add the following entry to your claude_desktop_config.json file:
{
"mcpServers": {
"opgg-mcp": {
"command": "node",
"args": ["/path/to/opgg-mcp/dist/index.js"]
}
}
}
After adding the configuration, restart Claude Desktop for the changes to take effect.
Direct Connection via SSE
If you want to connect directly to our SSE endpoint, you can use the mcp-remote package. This provides a simple way to connect to our remote server without having to install the full OP.GG MCP Server.
Add the following to your claude_desktop_config.json file:
{
"mcpServers": {
"opgg-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp-api.op.gg/mcp/sse"
]
}
}
}
This configuration will use the mcp-remote package to establish a direct connection to our SSE endpoint, providing you with immediate access to all OP.GG data tools.
Listing Available Tools
{
"method": "tools/list",
"params": {}
}
Response:
{
"tools": [
{
"name": "lol-champion-analysis",
"description": "Fetch analysis data for a specific champion"
},
{
"name": "lol-champion-leader-board",
"description": "Fetch that champion's rank"
},
{
"name": "esports-lol-schedules",
"description": "Get upcoming LoL match schedules"
},
{
"name": "esports-lol-team-standings",
"description": "Get team standings for a LoL league"
},
{
"name": "tft-meta-trend-deck-list",
"description": "TFT deck list tool for retrieving current meta decks"
},
{
"name": "tft-meta-item-combinations",
"description": "TFT tool for retrieving information about item combinations and recipes"
},
{
"name": "tft-champion-item-build",
"description": "TFT tool for retrieving champion item build information"
},
{
"name": "tft-recommend-champion-for-item",
"description": "TFT tool for retrieving champion recommendations for a specific item"
},
{
"name": "tft-play-style-comment",
"description": "This tool provides comments on the playstyle of TFT champions"
},
{
"name": "valorant-meta-maps",
"description": "Valorant map meta data"
},
{
"name": "valorant-meta-characters",
"description": "Valorant character meta data"
},
{
"name": "valorant-leaderboard",
"description": "Fetch Valorant leaderboard by region"
},
{
"name": "valorant-agents-composition-with-map",
"description": "Retrieve agent composition data for a Valorant map"
},
{
"name": "valorant-characters-statistics",
"description": "Retrieve character statistics data for Valorant, optionally filtered by map"
},
{
"name": "valorant-player-matches",
"description": "Retrieve match history for a Valorant player using their game name and tag line"
}
]
}
License
This project is licensed under the MIT License - see the LICENSE file for details.
Related Links
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.