Skip to main content
Get connected and run your first prediction market query in under 2 minutes.

1. Add the Server

Pick your client and run the install command:
Run in your terminal (not inside Claude Code):
claude mcp add predictions \
  --transport http \
  https://askgina.ai/ai/predictions/mcp
Then restart Claude Code. Run /mcp inside Claude Code to check the server status and trigger sign-in.

2. Connect & Sign In

1

Restart your client

After adding the server, restart your MCP client (or reload the window in Cursor).
2

Sign in

Your client will trigger the OAuth flow — a browser window opens. Sign in to Gina and approve access.
In Claude Code, run /mcp to see server status and trigger auth. In Cursor, go to Settings → MCP to check the connection.
3

Verify

Once authenticated, bash will appear alongside your client’s built-in tools. Try asking your AI assistant: “What tools do you have from the predictions server?“

3. Run Your First Command

Call bash with:
{ "command": "echo ok" }
You should see ok in the output. You’re connected! 🎉

4. Search a Market

Now try a real prediction market search:
{ "command": "host-tools searchPredictionMarkets '{\"query\":\"NBA\"}'" }
You should see JSON output with live market data.

Troubleshooting

Some clients show a sign-in link instead of opening a browser automatically. Look in your client UI for an auth link, or see Client Setup for manual sign-in commands.
Remove the server from your client, re-add it, and run tools/list again.
Start with a simple command (echo ok) first. If that works, try:
{ "command": "commands --help host-tools" }

Next Steps