OP.GG MCP Server
Seamlessly connect OP.GG data with AI agents via the Model Context Protocol.
Key Features
Use Cases
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), 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-leader-board: Get ranking board data for League of Legends champions.
- lol-champion-analysis: Provides analysis data for League of Legends champions (counter and ban/pick data available in the "weakCounters" field).
- lol-champion-meta-data: Retrieves meta data for a specific champion, including statistics and performance metrics.
- lol-champion-skin-sale: Retrieves information about champion skins that are currently on sale.
- lol-summoner-search: Search for League of Legends summoner information and stats.
- lol-champion-positions-data: Retrieves position statistics data for League of Legends champions, including win rates and pick rates by position.
- lol-summoner-game-history: Retrieve recent game history for a League of Legends summoner.
- lol-summoner-renewal: Refresh and update League of Legends summoner match history and stats.
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-match-history: 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. The following content explains installation methods using Claude Desktop as an example.
Direct Connection via StreamableHttp
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:
Mac/Linux
{
"mcpServers": {
"opgg-mcp": {
"command": "npx",
"args": [
"-y",
"supergateway",
"--streamableHttp",
"https://mcp-api.op.gg/mcp"
]
}
}
}
Windows
{
"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.
Installing via Smithery
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}
Adding to MCP Configuration
To add this server to your Claude Desktop MCP configuration, add the following entry to your claude_desktop_config.json file:
Mac/Linux
{
"mcpServers": {
"opgg-mcp": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@opgginc/opgg-mcp",
"--key",
"{SMITHERY_API_KEY}"
]
}
}
}
Windows
{
"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.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Related Links
Star History
Repository Owner
Organization
Repository Details
Programming Languages
Tags
Join Our Newsletter
Stay updated with the latest AI tools, news, and offers by subscribing to our weekly newsletter.
Related MCPs
Discover similar Model Context Protocol servers
GIS MCP Server
Empower AI with advanced geospatial operations via Model Context Protocol.
GIS MCP Server provides a Model Context Protocol (MCP) server implementation that enables Large Language Models to access and perform sophisticated GIS operations. It bridges AI assistants with Python geospatial libraries such as Shapely, GeoPandas, PyProj, Rasterio, and PySAL. The server supports a wide range of spatial analysis, coordinate transformations, raster and vector data processing, and geospatial intelligence tasks. By integrating with MCP-compatible clients, it enhances AI tools with precise and extensible spatial capabilities.
- ⭐ 70
- MCP
- mahdin75/gis-mcp
MLB API MCP Server
A Model Context Protocol server for seamless MLB data access through AI applications.
MLB API MCP Server provides comprehensive access to MLB statistics and baseball data via a FastMCP-based interface. It exposes a range of MLB functionalities—including live game data, player statistics, team information, and advanced metrics—as MCP tools accessible by AI workflows. Compatible with MCP-enabled AI clients, it enables structured, schema-validated querying and integrations for baseball data.
- ⭐ 33
- MCP
- guillochon/mlb-api-mcp
OpenTK Model Context Protocol Server
A standardized interface for LLMs to access Dutch parliamentary data.
OpenTK Model Context Protocol Server provides a bridge between large language models and Dutch parliamentary data using the Model Context Protocol (MCP). It enables AI systems to access, search, and analyze parliamentary documents, debates, and member information from the Tweede Kamer through a unified and structured interface. By leveraging the @modelcontextprotocol/sdk, it ensures consistent context management for model interactions. Built atop the OpenTK project, it delivers streamlined access to extensive open government datasets.
- ⭐ 16
- MCP
- r-huijts/opentk-mcp
MCP Tic-Tac-Toe
A Model Context Protocol server for playing and analyzing tic-tac-toe games through standardized tool interfaces.
MCP Tic-Tac-Toe is a server implementation that provides a complete set of MCP tools for playing, managing, and analyzing tic-tac-toe games. It supports interactions with AI assistants such as Claude, enabling features like creating multiple parallel sessions, making moves, providing strategic analysis, and managing game context. The server is designed for easy integration with clients through various transport methods, including stdio and SSE, and supports seamless AI-human collaboration.
- ⭐ 2
- MCP
- tomholford/mcp-tic-tac-toe
TrackMage MCP Server
Shipment and logistics tracking MCP server with multi-carrier support.
TrackMage MCP Server implements the Model Context Protocol (MCP) to provide shipment tracking, logistics management, and API integration for over 1,600 carriers worldwide. It allows integration with major LLMs, supports resources such as workspaces, shipments, orders, carriers, and tracking statuses, and offers tools to create, update, and monitor shipments and orders. The server supports OAuth-based authentication, flexible configuration via environment variables, and can be deployed locally for customized logistics operations.
- ⭐ 1
- MCP
- trackmage/trackmage-mcp-server
GitHub Enterprise MCP Server
Expose GitHub Enterprise data through a Model Context Protocol server.
GitHub Enterprise MCP Server provides an MCP (Model Context Protocol) interface to integrate with GitHub Enterprise APIs, enabling standardized access to repository data, issues, pull requests, workflows, and user management. It is compatible with both GitHub Enterprise Server and GitHub.com environments and supports features like repository management, file browsing, and enterprise statistics. The platform is designed for seamless integration with tools such as Cursor, making it simple to interact with GitHub data programmatically or via MCP-compliant clients.
- ⭐ 25
- MCP
- ddukbg/github-enterprise-mcp
Didn't find tool you were looking for?