Skip to main content

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:

SurfaceWhereBest for
Web apprugmunch.ioInteractive scanning, dashboards, alerts
MCP serverhttps://mcp.rugmunch.io/mcpAI agents (Claude, Cursor, opencode)
REST APIhttps://rugmunch.io/api/v1Your 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โ€‹

ScoreRisk levelAction
80โ€“100โœ… LowSafe to interact with normal caution
60โ€“79โš ๏ธ MediumResearch further before committing funds
40โ€“59๐Ÿ”ด HighSignificant risk โ€” extreme caution
0โ€“39๐Ÿ’€ CriticalLikely 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โ€‹