odds api mcp server for VS Code
io.github.odds-api-io/odds-api-mcp-server
Live sports betting odds from 365+ bookmakers across 34 sports, with value bets and arbitrage.
client:VS Code
transport:stdio
runtime:npm
Install odds api mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "odds-api-key",
"description": "ODDS_API_KEY",
"password": true
}
],
"servers": {
"odds-api-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"odds-api-mcp-server"
],
"env": {
"ODDS_API_KEY": "${input: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