Skip to main content
Glama

LolByte MCP Server

See https://modelcontextprotocol.io/docs/getting-started/intro

Demo

demo

Related MCP server: MCP Riot Server

Build

npm run build

LLM Client Integration

Claude Desktop

Update /path/to/claude_desktop_config.json as follows:

{
  "mcpServers": {
    "lolbyte-mcp": {
      "command": "sh",
      "args": [
        "-c",
        "RIOT_API_KEY=YOUR_API_KEY node /Users/anthony/repos/lolbyte-mcp/build/index.js"
      ]
    }
  }
}

LibreChat

Update librechat.yaml:

mcpServers:
  lolbyte:
    command: sh
    args:
      - -c
      - "RIOT_API_KEY=YOUR_API_KEY node /app/mcp/build/index.js"

Update docker-compose.override.yml:

services:
  api:
    volumes:
    - /path/to/lolbyte-mcp-server:/app/mcp
    - type: bind
      source: ./librechat.yaml
      target: /app/librechat.yaml

LM Studio

Update mcp.json as follows:

{
  "mcpServers": {
    "lolbyte-mcp": {
      "command": "sh",
      "args": [
        "-c",
        "RIOT_API_KEY=YOUR_API_KEY node /Users/anthony/repos/lolbyte-mcp/build/index.js"
      ]
    }
  }
}

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    This server enables Claude to access Team Fight Tactics (TFT) game data, allowing users to retrieve match histories and detailed match information through the Riot Games API.
    12 npm
    9
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    A community-developed Model Context Protocol server that integrates with the Riot Games API to provide League of Legends data, enabling AI assistants to retrieve player information, ranked stats, champion mastery, and match summaries through natural language queries.
    5
    27
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    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.
    24
    102
    MIT