Skip to main content
Detailed setup instructions for every supported MCP client.

Server URL

All clients use the same URL:
https://askgina.ai/ai/predictions/mcp

Setup by Client

Quick Install

Run in your terminal (not inside Claude Code):
claude mcp add predictions \
  --transport http \
  https://askgina.ai/ai/predictions/mcp
Then restart Claude Code. Inside Claude Code, run /mcp to see the server status and trigger the OAuth sign-in flow.

Manual Config

Add to ~/.claude/settings.json (or your project’s .claude/settings.json):
{
  "mcpServers": {
    "predictions": {
      "transport": "http",
      "url": "https://askgina.ai/ai/predictions/mcp"
    }
  }
}
Then restart Claude Code.

Sign In (OAuth)

After adding the server, you need to authenticate:
1

Restart your client

Restart your MCP client so it picks up the new server configuration.
2

Trigger auth

Your client will automatically trigger the OAuth flow when it tries to connect. If it doesn’t:
  • Cursor: Go to Settings → MCP and check the server status
  • Claude Code: Run /mcp inside Claude Code and select the predictions server
  • Codex: Run codex mcp login predictions
3

Browser sign-in

A browser window opens. Sign in to Gina and approve access.
4

Verify

Back in your client, bash should now appear as an available tool. Try asking your AI: “What MCP tools do you have?”

Manual Sign-In

If sign-in doesn’t trigger automatically:
Inside Claude Code, run /mcp, select predictions, and complete sign-in in your browser.

Verify It Works

After signing in, run:
{ "command": "echo ok" }
You should see ok. Then try a market search:
{ "command": "host-tools searchPredictionMarkets '{\"query\":\"NBA\"}'" }
If you see JSON market data, you’re all set!

Connection Issues?

See Troubleshooting for common fixes.