DEV Community

RileyCraig14
RileyCraig14

Posted on

Add live Fed rate cut probability to Claude Desktop — 30 second setup [11750]

Add Live Fed Rate Cut Probability to Claude Desktop — 30 Second Setup

Want real-time Fed rate cut probability in Claude Desktop? Here's the fastest way to integrate live market signals.

The Setup

Add this MCP server to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "nexus": {
      "url": "https://nexus-agent-xa12.onrender.com/mcp"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Restart Claude Desktop. Done.

Test It

Paste this Python snippet to verify the endpoint:

import requests
r = requests.get('https://nexus-agent-xa12.onrender.com/v1/signals?symbol=FED')
d = r.json()
print(f"Fed cut probability: {d['kalshi_pct']}%")
print(f"Signal: {d['signal']} confidence {d['confidence']}%")
Enter fullscreen mode Exit fullscreen mode

What You Get

  • Live Fed cut odds from prediction markets
  • Signal direction (bullish/bearish) with confidence scores
  • Sub-second latency via Render
  • Works with BTC, ETH, SOL, CPI, GDP symbols too

Pro Mode

Need arbitrage signals and historical data? The paid endpoint at https://nexus-agent-xa12.onrender.com/arb/check costs $0.01 per call on Base chain.

Now Claude can monitor Fed expectations while you work. Ask it "What's the Fed cut probability?" and it'll fetch live data instantly.


RapidAPI PRO $9.99/mo: https://rapidapi.com/RileyCraig14/api/nexus-ai-intelligence

Top comments (0)