sports hub for VS Code
io.github.lacausecrypto/sports-hub
41 sports API providers, 396 tools: scores, stats, odds, esports, chess, motorsport & more.
client:VS Code
transport:stdio
runtime:npm
Install sports hub in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sports-hub-providers",
"description": "SPORTS_HUB_PROVIDERS",
"password": true
},
{
"type": "promptString",
"id": "api-sports-key",
"description": "API_SPORTS_KEY",
"password": true
},
{
"type": "promptString",
"id": "pandascore-token",
"description": "PANDASCORE_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "the-odds-api-key",
"description": "THE_ODDS_API_KEY",
"password": true
}
],
"servers": {
"sports-hub": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-sports-hub"
],
"env": {
"SPORTS_HUB_PROVIDERS": "${input:sports-hub-providers}",
"API_SPORTS_KEY": "${input:api-sports-key}",
"PANDASCORE_TOKEN": "${input:pandascore-token}",
"THE_ODDS_API_KEY": "${input:the-odds-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs