What is the Odds Api MCP server?
The Odds API MCP — sportsbook odds across 70+ books, 30+ leagues
How to install Odds Api
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"odds-api": {
"url": "https://gateway.pipeworx.io/odds-api/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"odds-api": {
"serverUrl": "https://gateway.pipeworx.io/odds-api/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"odds-api": {
"type": "http",
"url": "https://gateway.pipeworx.io/odds-api/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"odds-api": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/odds-api/mcp"
]
}
}
}Claude Code
claude mcp add --transport http odds-api https://gateway.pipeworx.io/odds-api/mcp