ask, get_odds, or analyze_position directly in conversation.
What is MCP?
MCP is an open standard that lets AI assistants communicate with external tools over a structured protocol. When you add EdgeFinder to your MCP client config, the client automatically starts the EdgeFinder process, discovers its tools, and can invoke them mid-conversation without you writing any code.Prerequisites
- Node.js 18 or later
- An EdgeFinder API key — get one at chat.edgefinder.io/settings/integrations
- An MCP-compatible AI client (Claude Desktop, Openclaw, or similar)
Set up the MCP server
1
Get your API key
Sign in at chat.edgefinder.io/settings/integrations and copy your API key. It starts with
ef_live_.2
Add EdgeFinder to your MCP client config
Open your MCP client’s configuration file and add the
edgefinder block under mcpServers. Use npx so you always run the latest version without a global install.- Claude Desktop
- Openclaw
- Other MCP clients
Open
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows) and add:claude_desktop_config.json
3
Restart your MCP client
Save the config file and restart your AI client completely. Most clients do not hot-reload MCP configuration.
After restarting, you should see EdgeFinder listed in your client’s tool panel or available tool set. If it does not appear, check the troubleshooting section below.
4
Test the connection
Ask your AI assistant a sports question to confirm EdgeFinder is connected:
“What does EdgeFinder think about tonight’s NBA games?”The client will invoke the
ask tool and stream back an AI-powered analysis.Authentication
EdgeFinder authenticates using an API key passed as an environment variable in your MCP config. SetEDGEFINDER_API_KEY in the env block — never hard-code it elsewhere.