Quickstart
Rug Munch Intelligence (RMI) is a crypto security platform: token scanners, wallet forensics, whale tracking, and market intelligence across 13 chains, served by 346 tools with automatic multi-provider failover. Every paid tool includes free trial calls โ no account, no card, no prepayment.
Three ways in:
| Surface | Where | Best for |
|---|---|---|
| Web app | rugmunch.io | Interactive scanning, dashboards, alerts |
| MCP server | https://mcp.rugmunch.io/mcp | AI agents (Claude, Cursor, opencode) |
| REST API | https://rugmunch.io/api/v1 | Your own scripts and services |
โ Live-platform facts on this page verified against production on 2026-08-24.
1. Scan a token (60 seconds, free)โ
The fastest safety check is rugshield โ one call returns a 0โ100 score, risk
tier, and the specific red flags found:
curl -X POST https://rugmunch.io/api/v1/x402-tools/rugshield \
-H "Content-Type: application/json" \
-H "X-Client-ID: my-first-scan" \
-d '{"address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1o", "chain": "solana"}'
The first calls per tool are free (trial-gated by device fingerprint or connected wallet). After trials, the same call is billed per-use via x402 micropayments โ typically $0.01โ$0.50.
Reading the scoreโ
| Score | Risk level | Action |
|---|---|---|
| 80โ100 | โ Low | Safe to interact with normal caution |
| 60โ79 | โ ๏ธ Medium | Research further before committing funds |
| 40โ59 | ๐ด High | Significant risk โ extreme caution |
| 0โ39 | ๐ Critical | Likely scam โ do not interact |
Scores combine five weighted categories: contract safety (25 pts), liquidity (25), holders (20), deployer reputation (15), and trading activity (15). The full model is explained in the Scanner Guide.
2. Check a wallet (free)โ
Look up any address โ labels, risk scoring, and portfolio:
# Wallet security analysis
curl https://rugmunch.io/api/v1/security/wallet/0xYourAddress
# Smart-money / PnL profile (paid tier)
curl https://rugmunch.io/api/v1/x402-databus/wallet-profile?address=0xYourAddress&chain=ethereum
Full guide: Wallet Intelligence.
3. Use it from your AI agent (free tier)โ
RMI ships a 14-tool MCP server. For Claude Desktop, Cursor, or opencode, add the server config and restart โ details and per-client snippets in MCP Setup:
{
"mcpServers": {
"rugmunch": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.rugmunch.io/mcp"]
}
}
}
Example tool: get_token_risk โ free tier of 5 calls/day, then $0.01/call.
4. Discover everythingโ
# Full paid-tool catalog with live pricing (346 tools)
curl https://rugmunch.io/.well-known/x402
# Human-browsable tool catalog
curl https://rugmunch.io/api/v1/x402-tools/discovery
# MCP tool list (14 tools, schemas included)
curl https://mcp.rugmunch.io/mcp/tools
# Full OpenAPI spec (835 routes)
curl https://rugmunch.io/openapi.json
5. Or just open the web appโ
rugmunch.io gives you every engine as a UI: the Scanner, RugMaps fund-flow maps, RugCharts signal charts, wallet forensics, live threats, and AI chat. Free trials apply there too.
Next stepsโ
- Scanner Guide โ deep scans, engines, async scan status
- Wallet Intelligence โ labels, PnL, clusters, funding paths
- RugMaps โ fund-flow maps and entity graphs
- RugCharts โ chart signals and whale tracking
- x402 Payments โ how pay-per-call works, supported chains, refunds
- API Reference โ auth, errors, rate limits, OpenAPI spec