Spin up the proxy client locally in one command. It tunnels directly to our high-frequency hosted data backend.
docker run -e OMEGA_API_KEY="your_api_key_here" -p 8000:8000 ghcr.io/omegaprotocol/omega-mcp:latest
Clone the public repository directly and run using Python's fastmcp runner.
git clone https://github.com/jakesdev1991/omega-defi-mcp.git
cd omega-defi-mcp
pip install -e .
export OMEGA_API_KEY="your_api_key_here"
omega-client
To hook up Claude Desktop to retrieve live cross-chain spreads instantly, append this to your claude_desktop_config.json:
{
"mcpServers": {
"omega-client": {
"command": "omega-client",
"env": {
"OMEGA_API_KEY": "your_api_key_here"
}
}
}
}