{"slug": "how-to-detect-a-solana-honeypot-token-before-your-bot-buys", "title": "How to Detect a Solana Honeypot Token Before Your Bot Buys", "summary": "A developer released RugCheck AI, a remote MCP server that detects Solana honeypot tokens before a trading bot buys them. The tool simulates sell and trade routes to identify tokens that allow buying but block selling, preventing bots from being drained. It returns verdicts like DANGER for tokens with no live sell route, high supply concentration, or zero liquidity.", "body_md": "A honeypot is the cleanest way to drain a trading bot on Solana: the token lets you **buy**, but there is no way to **sell**. Your agent spends real USDC, receives tokens, and then discovers the exit is welded shut. The position is worth zero and there is nothing to do about it.\n\nHoneypots don't show up on a price chart — the chart looks great, because everyone can buy and nobody can sell. You only find out at exit. So the check has to happen **before** the buy.\n\n[RugCheck AI](https://github.com/MrWizardlyLoaf/rugcheck-ai) is a remote MCP server. Point your agent at the endpoint and ask before any buy:\n\n``` php\nsimulate_sell(\"<mint>\") -> { sellable: true|false, verdict: \"...\" }\n```\n\nA token with no live sell route comes back sellable:false — that's the honeypot, even when nothing on-chain formally blocks the sell yet. For the full picture in one shot:\n\n``` php\nscan_token(\"<mint>\") -> { verdict: SAFE|CAUTION|DANGER, safety_score, sellable, risks: [...] }\n```\n\nOr simulate the whole round-trip at your real size:\n\n``` php\nsimulate_trade(\"<mint>\", 100) -> { buyable, sellable, exit_usd, round_trip_loss_pct }\n```\n\nA honeypot shows buyable:true, sellable:false. A healthy token shows a small round-trip loss (slippage) and sellable:true.\n\nI scanned a fresh pump token on 2026-06-17 (re-run to verify): scan_token returned **DANGER, score 20** — no live sell route, 100% of supply held by a single wallet, $0 liquidity. An agent that bought it could never get out. That verdict is available before the buy, even though the token is too new to be indexed anywhere else.\n\nIt's a standard Streamable HTTP MCP server. In Cline / Claude Dev, add an mcpServers entry named rugcheck-ai pointing at the endpoint url. In Claude Desktop, run it via npx mcp-remote. In Cursor, add it under Settings, MCP, Streamable HTTP.\n\nEndpoint:\n\n```\nhttps://web-production-58d585.up.railway.app/mcp\n```\n\nThen the rule is simple: **if sellable is false, do not buy.** No install, no API key. Repo and full tool list: github.com/MrWizardlyLoaf/rugcheck-ai (official MCP Registry: io.github.MrWizardlyLoaf/rugcheck-ai).", "url": "https://wpnews.pro/news/how-to-detect-a-solana-honeypot-token-before-your-bot-buys", "canonical_source": "https://dev.to/mrwizardlyloaf/how-to-detect-a-solana-honeypot-token-before-your-bot-buys-2cdf", "published_at": "2026-06-19 03:24:00+00:00", "updated_at": "2026-06-19 04:00:17.802075+00:00", "lang": "en", "topics": ["developer-tools", "artificial-intelligence", "ai-agents"], "entities": ["RugCheck AI", "Solana", "MCP", "Cline", "Claude Dev", "Claude Desktop", "Cursor", "MrWizardlyLoaf"], "alternates": {"html": "https://wpnews.pro/news/how-to-detect-a-solana-honeypot-token-before-your-bot-buys", "markdown": "https://wpnews.pro/news/how-to-detect-a-solana-honeypot-token-before-your-bot-buys.md", "text": "https://wpnews.pro/news/how-to-detect-a-solana-honeypot-token-before-your-bot-buys.txt", "jsonld": "https://wpnews.pro/news/how-to-detect-a-solana-honeypot-token-before-your-bot-buys.jsonld"}}