by opgginc
Provides AI agents with real‑time OP.GG gaming statistics, meta data, and historical information via standardized function calls, enabling seamless integration of League of Legends, Valorant, TFT, and esports data into AI workflows.
The server exposes a collection of tools that retrieve OP.GG data—such as champion rankings, summoner stats, match histories, esports schedules, and Valorant meta information—through the Model Context Protocol. AI agents can invoke these tools to obtain up‑to‑date gaming insights without building custom scrapers.
supergateway
entry to your MCP configuration (e.g., claude_desktop_config.json
):
{
"mcpServers": {
"opgg-mcp": {
"command": "npx",
"args": ["-y", "supergateway", "--streamableHttp", "https://mcp-api.op.gg/mcp"]
}
}
}
npx -y @smithery/cli@latest install @opgginc/opgg-mcp --client claude --key {SMITHERY_API_KEY}
Then add the corresponding @smithery/cli
run command to the MCP config (similar JSON structure, but using the Smithery package).Q: Do I need an API key?
A: The direct supergateway
connection does not require an API key. Smithery installation may need a Smithery API key for licensing.
Q: Which platforms are supported? A: Any MCP‑compatible client (Claude Desktop is the primary example) can use the server.
Q: How are updates handled? A: The server pulls data from OP.GG’s backend, so updates are reflected automatically when the tools are invoked.
Q: Can I add custom tools? A: Yes, you can extend the MCP server by defining additional functions following the MCP specification.
Q: Is the server open source? A: The project is licensed under the MIT License and the source code is available on GitHub.
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.
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), allowing for easy installation and immediate access to OP.GG data in a format that's easily consumable by AI models and agent frameworks.
The OP.GG MCP Server currently supports the following tools:
The OP.GG MCP Server can be used with any MCP-compatible client. The following content explains installation methods using Claude Desktop as an example.
If you want to connect directly to our StreamableHttp endpoint, you can use the supergateway
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": [
"-y",
"supergateway",
"--streamableHttp",
"https://mcp-api.op.gg/mcp"
]
}
}
}
{
"mcpServers": {
"opgg-mcp": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"supergateway",
"--streamableHttp",
"https://mcp-api.op.gg/mcp"
]
}
}
}
This configuration will use the supergateway
package to establish a direct connection to our StreamableHttp endpoint, providing you with immediate access to all OP.GG data tools.
To install OP.GG MCP for Claude Desktop automatically via Smithery:
$ npx -y @smithery/cli@latest install @opgginc/opgg-mcp --client claude --key {SMITHERY_API_KEY}
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": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@opgginc/opgg-mcp",
"--key",
"{SMITHERY_API_KEY}"
]
}
}
}
{
"mcpServers": {
"opgg-mcp": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@smithery/cli@latest",
"run",
"@opgginc/opgg-mcp",
"--key",
"{SMITHERY_API_KEY}"
]
}
}
}
After adding the configuration, restart Claude Desktop for the changes to take effect.
This project is licensed under the MIT License - see the LICENSE file for details.
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "opgg-mcp": { "command": "npx", "args": [ "-y", "supergateway", "--streamableHttp", "https://mcp-api.op.gg/mcp" ] } } }
Discover more MCP servers with similar functionality and use cases
by GeLi2001
Provides access to Team Fight Tactics match history and detailed match data through Model Context Protocol tools.
by wilson-urdaneta
chesspal-mcp-engine is a Python-based chess engine that integrates with Stockfish, exposing its functionality as an MCP server. It serves as a robust backend for chess-related applications, enabling move calculation, validation, and game status retrieval.
by netdata
Real-time, per‑second infrastructure monitoring platform that provides instant insights, auto‑discovery, edge‑based machine‑learning anomaly detection, and lightweight visualizations without requiring complex configuration.
by zed-industries
Provides real-time collaborative editing powered by Rust, enabling developers to edit code instantly across machines with a responsive, GPU-accelerated UI.
by github
Enables AI agents, assistants, and chatbots to interact with GitHub via natural‑language commands, providing read‑write access to repositories, issues, pull requests, workflows, security data and team activity.
by daytonaio
Provides a secure, elastic sandbox environment for executing AI‑generated code with isolated runtimes and sub‑90 ms provisioning.
by RooCodeInc
An autonomous coding agent that lives inside VS Code, capable of generating, refactoring, debugging code, managing files, running terminal commands, controlling a browser, and adapting its behavior through custom modes and instructions.
by chaitin
Provides a self‑hosted web application firewall and reverse‑proxy that filters, monitors, and blocks malicious HTTP/S traffic, protecting web applications from attacks such as SQL injection, XSS, brute‑force, bot abuse, and various code injections.
by PipedreamHQ
Connect APIs quickly, run event‑driven automations, and execute custom code in Node.js, Python, Go, or Bash on a hosted platform.