start.gg MCP Server for VS Code
io.github.tomo789/startgg-mcp-server
MCP server for the start.gg GraphQL API: tournaments, events, entrants, sets, standings, streams
client:VS Code
transport:stdio
runtime:npm
Install start.gg MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "startgg-token",
"description": "STARTGG_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "startgg-enable-writes",
"description": "STARTGG_ENABLE_WRITES",
"password": true
}
],
"servers": {
"startgg-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"startgg-mcp-server"
],
"env": {
"STARTGG_TOKEN": "${input:startgg-token}",
"STARTGG_ENABLE_WRITES": "${input:startgg-enable-writes}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs