ScanHood MCP Server
OfficialProvides tools for scanning tokens on Robinhood Chain (chain ID 4663) for honeypot/rug-pull detection, LP-lock verification, contract verification, and deployer reputation, returning a PASS/CAUTION/DANGER verdict. Also includes tools for safe launches and building unsigned launch transactions.
Provides a TradingView datafeed (UDF protocol) with endpoints for OHLCV data and other market data to power TradingView charting widgets.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ScanHood MCP ServerCheck if 0x1234567890abcdef1234567890abcdef12345678 is a honeypot"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ScanHood: open-source safety layer
This is the actual code running live behind scanhood.xyz, a safety and analytics layer for Robinhood Chain (chain ID 4663). Published so the detection logic can be read and audited directly, instead of trusted as a black box.
No external security API covers this chain (GoPlus rejects chain 4663, GMGN's API is walled off), so every check here runs on-chain, from scratch.
What's in here
honeypot/scan.js: the honeypot/rug detector. Simulates a real buy + sell round-trip via a singleeth_call(no gas spent, nothing deployed): it constructs a small contract whose constructor buys the token, tries to sell it, and reverts with the encoded result. That revert-with-data trick is the whole mechanism, read the file, it's under 150 lines.api/server.js: the REST API (/api/scan,/api/search,/api/ohlcv,/api/quote,/api/launch,/api/watchlist,/api/token-extra, the/api/udf/*TradingView datafeed, and the opt-in fee-claim bot's/api/bots/*). Composes the honeypot result with an LP-lock check (who actually controls the liquidity), contract-verification status, and deployer-reputation lookup into one PASS / CAUTION / DANGER verdict.mcp/server.js: a Model Context Protocol server exposing the same API as native tools, so an agent (Claude, etc.) can callscan_token,safe_launches,build_launch_tx, etc. directly instead of hand-rolling HTTP calls.
Live docs with request/response examples: https://scanhood.xyz/docs
Related MCP server: r0x-os
Architecture, honestly
┌─────────────┐
agents ──▶│ mcp/server │──▶ api/server ──▶ honeypot/scan (eth_call sim)
humans ──▶│ (MCP) │ │ ├──▶ Blockscout (verification, LP holders)
└─────────────┘ │ └──▶ DexScreener (price/liquidity/volume)
▼
optional data feeds (deployer reputation,
other-launchpad allowlists, RWA issuer set,
each is a separate cron-refreshed collector,
not included in this repo, degrades gracefully
to "unknown" if absent)Everything marked "optional" in .env.example is a static JSON file your own
cron/collector can produce in whatever shape matches the field names read in
api/server.js, the API itself never assumes a specific pipeline for them.
Run it
npm install
cp .env.example .env # optional, every feature has a working default
npm run api # http://127.0.0.1:8946
npm run mcp # http://127.0.0.1:8948/mcp
node honeypot/scan.js 0xYourTokenAddress # CLI, standaloneWhat's not in here, and why
The launchpad contracts. ScanHood's no-rug launchpad is a fork of the open-source Pons locked-LP factory, that's upstream's code to publish, not ours to re-vendor here.
api/server.js's/api/launchjust needs a factory address + fee in.env; point it at any factory with the samelaunchToken/predictTokenAddresssignature.The frontend. This repo is the audit surface (the "how do we decide PASS/CAUTION/DANGER" logic), not the site's UI.
Trade execution / custody. Nothing here holds a private key.
/api/launchand/api/quoteonly ever return unsigned transactions or read-only quotes for you to sign yourself.
Disclaimer
These are automated on-chain heuristics. They reduce risk; they are not a guarantee. "Sellable" means the honeypot simulation passed, not "safe to buy." Always do your own research.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables agents to query live Robinhood Chain data including tokens, wallets, Chainlink feeds, heat scores, and tracking error on tokenized equities, all read-only without API keys.Last updated417MIT
- Alicense-qualityCmaintenanceEnables AI agents to interact with Robinhood Chain via USDG payments, offering tools for balance, pricing, trading, and more.Last updated123MIT
- Alicense-qualityCmaintenanceEnables agents to scan tokens for honeypots, check safe launches, and build launch transactions on Robinhood Chain via the Model Context Protocol.Last updatedMIT
- Alicense-qualityCmaintenanceProvides live, read-only access to Robinhood Chain and Lox Corp data, enabling AI agents to query chain stats, token launches, agent details, and more.Last updated1MIT
Related MCP Connectors
On-chain honeypot/rug scanner, market data, and launch tools for Robinhood Chain (EVM 4663).
Rug-check & launch radar for trading agents: composite honeypot score, EVM+Solana, keyless x402.
Solana token safety for AI agents — rug-pull, honeypot & Token-2022 trap detection before you buy.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scanhood/scanhood'
If you have feedback or need assistance with the MCP directory API, please join our Discord server