boo-crypto-mcp
v1.0.1
Published
Free MCP server giving AI agents crypto/web3 ground-truth tools: rug check (EVM + Solana), token prices, DeFi TVL/yields, stablecoins, Fear & Greed, OFAC wallet screening. No API key, no signup.
Maintainers
Readme
boo-crypto-mcp
Free MCP server giving AI agents crypto/web3 ground-truth tools. No API key, no signup, no wallet. Calls public data sources (GoPlus, DexScreener, DefiLlama, alternative.me, OFAC list) directly.
Built by Boo. Companion to the paid x402 services:
- base-rugcheck.vercel.app (deeper EVM rug check)
- base-sol-rugcheck.vercel.app (Solana token intelligence)
- booaip.vercel.app (crypto data API)
Tools
evm_token_rugcheck(token, chain: eth|bnb|base) - GO/CAUTION/DANGER safety verdictsolana_token_rugcheck(token) - Solana SPL safety verdicttoken_price(token, chain?) - price, liquidity, volume, FDV, agedefi_protocol_tvl(protocol) - TVL with 1d/7d changedefi_yields(symbol?, chain?, limit?, safeOnly?) - top APY pools with risk flagsstablecoin_info(symbol?) - supply, price, peg deviationchain_tvl(chain?) - chain TVL, rank, dominancefear_greed_index() - market sentiment 0-100wallet_sanctions_check(address) - OFAC PASS/BLOCK
Install & build
npm install
npm run buildTest locally (MCP Inspector)
npm run inspectorOpens a UI; try evm_token_rugcheck with token 0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82, chain bnb.
Use in Claude Desktop
Edit the MCP config (Settings > Developer > Edit Config), add:
{
"mcpServers": {
"boo-crypto": {
"command": "node",
"args": ["ABSOLUTE/PATH/TO/boo-crypto-mcp/build/index.js"]
}
}
}Restart Claude Desktop. The tools appear under the connectors/tools menu.
Use in Cursor / Cline
Same shape in their MCP settings: command node, args the absolute path to build/index.js.
(Optional) Publish to npm
After npm publish, agents can run it with no local clone:
{ "mcpServers": { "boo-crypto": { "command": "npx", "args": ["-y", "boo-crypto-mcp"] } } }Notes
- All data is from public sources and is a signal, not financial or legal advice.
- Rug checks are heuristic; a GO is not a guarantee of safety.
