For AI agents · MCP
MCP server — free exchange data
The same data that powers Rebatify, exposed as a free, read-only remote MCP server. Point any MCP client — Claude, ChatGPT, Cursor — at the endpoint and its model can query exchanges, rebates, events and pre-IPO price gaps directly. No account, no API key.
Connect
The server lives at a single endpoint over MCP’s Streamable HTTP transport:
https://www.rebatify.net/api/mcp
- Claude.ai / Claude Desktop: Settings → Connectors → Add custom connector → paste the URL above.
- Cursor / other clients: add an MCP server of type
httppointing at the same URL.
# Claude Code CLI — add the remote server claude mcp add --transport http rebatify https://www.rebatify.net/api/mcp # Then just ask, e.g. # "Use rebatify to list the top 5 exchanges by rebate %" # "Which exchange events end within 3 days?"
Tools
Pre-IPO price gaps
Live cross-exchange price gaps for pre-IPO equity perps, ranked by basis-point spread — time-sensitive arbitrage data.
spacex_gapSpaceX cross-exchange price gapsopenai_gapOpenAI cross-exchange price gapsanthropic_gapAnthropic cross-exchange price gapspreipo_discoveryWhich exchanges list which pre-IPO / prediction assetsExchange data
The full exchange directory plus rebate/fee answers. Filter by category, id or min-payback; request only the fields you need.
exchangesFull exchange directory (~40 venues): fees, rebate %, loss coverage, KYC, signup linksexchangeA single exchange by idbest_rebateExchanges ranked by rebate / payback %rebate_routeBest rebate routing for a given monthly volumefee_savingsAnnual fee savings vs. your current exchangesignup_stackStacked signup-bonus plan for a given starting capitalreal_roiSignup-deal ROI — the same calc as the site ROI CalculatorEvents & promotions
Exchange events classified by category and by exchange, with counts. Filter by exchange, category, status or end window.
eventsFull events catalog (competitions, airdrops, new-user, deposit, vip, …)competitionsActive trading competitions with prize poolslive_airdropsActive airdrop eventsending_soonActive events ending within N dayssns_eventsSNS giveaways (like / RT / reply / tag to win)Call it raw
Every tool is just a read of already-public site data, so there is nothing to gate. Most tools accept filters, and a fields array to return only the columns you want.
# No SDK needed — it's plain JSON-RPC over one POST endpoint.
# 1. list the tools:
curl -s https://www.rebatify.net/api/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# 2. call one (top 5 exchanges by rebate %):
curl -s https://www.rebatify.net/api/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
"params":{"name":"best_rebate","arguments":{"limit":5}}}'Need to pay per call instead?
Prefer machine-metered billing, a higher-volume arrangement, or a bespoke feed? The same data is also sold pay-per-call in USDC over Coinbase x402 — see the x402 API — or DM the operator at @rebatify_real on Telegram.