Do I need a paid EdgeFinder plan to use Codex MCP?
Yes. The MCP server requires an EdgeFinder subscription because the underlying data queries run against the paid API.
Give OpenAI Codex access to live NFL, NBA, and MLB data, Polymarket odds, and player-level research through the EdgeFinder MCP server. Ask Codex any betting question and it can pull real data to answer.
EdgeFinder runs a remote MCP server so the OpenAI Codex CLI can query NFL, NBA, MLB, and Polymarket data directly.
Connect through the hosted MCP URL, or run the EdgeFinder CLI locally, then let Codex pull play-by-play, injuries, usage splits, and live odds and answer with sourced context.
Step 1
Generate an API key from your EdgeFinder integrations page. Codex passes it to the MCP server as EDGEFINDER_API_KEY.
Step 2
Edit ~/.codex/config.toml and add EdgeFinder as an MCP server. Restart Codex to pick up the new server.
[mcp_servers.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
Start a new Codex session and ask what tools are 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 the OpenAI Codex CLI.