Connect ParlayAPI to Claude Desktop and turn the chat into a sports-betting analyst. Live odds, cross-book arb scans, Pinnacle-anchored +EV plays, CLV grading, and SGP correlation pricing all become tools Claude can call directly.
pip install parlay-api-mcp
Confirm:
parlay-api-mcp --version
Sign up at /signup (1,000 requests/month, no credit card). Copy the pak_live_... key.
Open the config in Claude Desktop's Settings → Developer → Edit Config, or open the file directly:
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Edit the JSON (create the file if it doesn't exist):
{
"mcpServers": {
"parlay-api": {
"command": "parlay-api-mcp",
"env": {
"PARLAY_API_KEY": "pak_live_..."
}
}
}
}
If you already have other MCP servers, merge the parlay-api entry into the existing mcpServers object. Use absolute path for command if Claude Desktop can't find parlay-api-mcp on its PATH:
# find the absolute path in a terminal:
which parlay-api-mcp
Quit (Cmd-Q on macOS, full close on Windows/Linux), reopen. You should see parlay-api show up with a hammer/tool icon in the chat input area, indicating MCP tools are available.
List every ParlayAPI tool you have access to.
What are tonight's best +EV plays on MLB? Show the top 5 by edge.
Are there any cross-book arbs open on NBA right now? Sort by edge.
I bet Yankees -145 at 14:30 UTC today. Grade my CLV.
Source-quality check: which books are showing degraded SLA right now?
Claude Desktop launches MCP servers with a minimal PATH. Use the absolute path from which parlay-api-mcp in the command field.
The PARLAY_API_KEY env value is wrong or expired. Get a fresh key at /signup and replace it.
Check ~/Library/Logs/Claude/mcp.log (macOS) or the equivalent on your OS for connection errors. Common cause: invalid JSON in the config file. Validate it with jq or any JSON linter.
The MCP server wraps every public endpoint. Claude's reasoning loop chains tool calls: it can pull live odds, devig against the sharp anchor, score your historical bets against today's close, and price an SGP all in one turn. See building a betting agent with Claude for four worked recipes.
← All integrations · Cursor guide · Claude Code CLI guide · PyPI package