Do I need a paid EdgeFinder plan to use Claude MCP?
Yes. The MCP server requires an EdgeFinder subscription because the underlying data queries run against the paid API.
Give Claude access to live NFL, NBA, and MLB data, Polymarket odds, and player-level research through the EdgeFinder MCP server. Ask Claude any betting question and it can pull real data to answer.
EdgeFinder ships an MCP server so Claude Desktop and Claude Code can query NFL, NBA, MLB, and Polymarket data directly.
Instead of asking Claude to speculate, Claude can pull play-by-play, injuries, usage splits, and live odds through EdgeFinder, then answer with sourced context.
Step 1
Generate an API key from your EdgeFinder integrations page. Claude passes it to the MCP server as EDGEFINDER_API_KEY.
Step 2
Edit claude_desktop_config.json (Claude Desktop) or your Claude Code MCP config and add EdgeFinder as an MCP server. Restart Claude to pick up the new server.
{
"mcpServers": {
"edgefinder": {
"command": "npx",
"args": ["-y", "@edgefinder/cli", "mcp"],
"env": { "EDGEFINDER_API_KEY": "your-api-key-here" }
}
}
}Step 3
For clients that only ask for an MCP server URL — like Grok or ChatGPT connectors — point them at the hosted EdgeFinder endpoint over HTTPS instead of running the CLI locally. Tool calls require an EdgeFinder API key, so prefer clients that let you send a request header.
https://chat.edgefinder.io/api/mcp
Authorization: Bearer YOUR_EDGEFINDER_API_KEYStep 4
If a connector UI only accepts a URL and gives you no way to set headers, pass your API key as a query parameter instead. The @edgefinder/cli package is for local MCP clients and does not host a public URL by itself.
https://chat.edgefinder.io/api/mcp?api_key=YOUR_EDGEFINDER_API_KEYStep 5
In a new Claude chat, ask Claude what tools it has available. The EdgeFinder tools should appear.
Yes. The MCP server requires an EdgeFinder subscription because the underlying data queries run against the paid API.
Yes. The EdgeFinder MCP server works with any MCP-compatible client including Claude Desktop and Claude Code.