lolbyte-code/lolbyte-mcp-server
3.1
If you are the rightful owner of lolbyte-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
LolByte MCP Server is a Model Context Protocol server designed to integrate with various LLM clients, providing a seamless connection to the Riot Games API for enhanced data retrieval and processing.
LolByte MCP Server
See https://modelcontextprotocol.io/docs/getting-started/intro
Demo
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"
]
}
}
}