0xrhXBT runs a public mcp server. any mcp-compatible agent (claude, chatgpt, cursor...) can read robinhood chain intelligence directly: stock premium dislocations, corporate-action calendars, oracle health, trend scores, launch radar with risk gates, and a pre-trade risk check. read-only, no wallet, no key needed.
https://rhxbt.com/mcp
streamable http transport, json responses, auth none. every tool returns observed data with nulls where nothing was verified, never fabricated zeros, and never a buy/sell recommendation. (/api/mcp/mcp still works as a legacy alias.)
claude mcp add --transport http rhxbt https://rhxbt.com/mcp
or install the skill so claude knows when to reach for each tool: /skill.md — save it as .claude/skills/rhxbt/SKILL.md in your project.
claude desktop: settings → developer → edit config. cursor: .cursor/mcp.json:
{
"mcpServers": {
"rhxbt": {
"type": "http",
"url": "https://rhxbt.com/mcp"
}
}
}settings → connectors → advanced → developer mode, then add a custom connector with this url (no authentication):
https://rhxbt.com/mcp
works in chatgpt's developer-mode connectors and deep research. any other client that speaks mcp streamable http connects the same way — one url, auth none.
robinhood's agentic trading mcp server places real orders — and carries zero chain data. connect BOTH servers to the same agent and the loop closes: risk-check here, trade there.
{
"mcpServers": {
"robinhood-trading": {
"type": "http",
"url": "https://agent.robinhood.com/mcp/trading"
},
"rhxbt": {
"type": "http",
"url": "https://rhxbt.com/mcp"
}
}
}the guard rule (also in the skill): before any order on the trading side, call check_token_risk with the exact contract and trade size, and agent_signal_digest once per session. a "pass" gate means "nothing obviously wrong observed onchain" — never a recommendation. eligibility for the trading side is robinhood's (us accounts); this terminal is the data side.
agent_signal_digest — first call of every session: top premium dislocations + pending corporate actions + oracle anomalies in one compact readcheck_token_risk — before ANY trade: rug guard, named safety checks with proof links, radar risk gate, exit impact for your trade sizeget_stock_premiums — before pricing a stock token: dex vs live us print (session open) vs frozen oracle (closed), with the dated session verdictchainlink_feed — before trusting an oracle-referenced price: one feed's cadence, oraclePaused(), deviation, verdictpending_corporate_actions — before reading any stock chart: is a split scheduled that explains the move before it happensget_trending_tokens — finding ideas: trend scores 0-100 vs each token's own 7d baselineget_token — resolving a symbol safely: canonical stock contracts win over memecoin impersonators; full detail, signals, whalesget_token_candles — charting: ohlcv 5m / 1h / 1d, the same bars the terminal draws, each with its sourcesearch_tokens — fuzzy lookup by symbol, name or address fragment with live market fieldsget_launch_radar — early candidates with the three-output assessment: risk gate / opportunity / confidenceget_kol_leaderboard — who to listen to: callers ranked only by verified onchain call performanceget_intel — what changed: oracle divergence, whale moves, depegs, volume spikesget_narratives — what the chain is talking about, ranked by mindshare with stability labelsget_chain_stats — macro context: tvl, dex volume, txns, addressesget_equity_flows — how a stock actually settles: off-hours share, mint/burn, dvp prints per windowget_settlement_graph — who trades stock tokens with whom off-pool — counterparty aggregatesget_stock_multipliers — erc-8056 corporate actions already detected from the transfer ratio onchainstock_float — is real inventory being created: ap creations/redemptions per stock, net sharesget_lending_markets — morpho markets with stock-collateral leverage flaggedstablecoin_flows — the float behind everything: per-stable supply at par, changes, mints/burns, deployed ratioearn_tracker — what backs robinhood earn: usdg markets, utilization, reported apy, seriesperps_markets — lighter perps with the perp-vs-spot basis where the ticker is a stock we trackperps_funding — hourly funding series for one perp marketchain_economics — the business model measured: sequencer fees from sampled blocks, deploys, erc-4337 sharechain_composition — equities chain or memecoin chain: value + holders per asset class, daily rwa shareget_bridge_flow — net l1 bridge flow, valuation-clocked, withheld over fabricated zerosx-price field in the openapi spec is 0 on every route, and a paid lane, if ever, will appear at /.well-known/x402 first (a clearly-marked placeholder today)also listed on smithery and the official mcp registry.
source: public rpc · blockscout · dexscreener · chainlink · defillama · twitterapi.io · rest equivalents at /api/v2/*; machine-readable map at /llms.txt. if your agent publishes research using this data, an attribution to @0xrhxbt is appreciated