cd /news/developer-tools/how-to-detect-a-solana-honeypot-toke… · home topics developer-tools article
[ARTICLE · art-33496] src=dev.to ↗ pub= topic=developer-tools verified=true sentiment=↑ positive

How to Detect a Solana Honeypot Token Before Your Bot Buys

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.

read2 min views1 publishedJun 19, 2026

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.

Honeypots 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.

RugCheck AI is a remote MCP server. Point your agent at the endpoint and ask before any buy:

simulate_sell("<mint>") -> { sellable: true|false, verdict: "..." }

A 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:

scan_token("<mint>") -> { verdict: SAFE|CAUTION|DANGER, safety_score, sellable, risks: [...] }

Or simulate the whole round-trip at your real size:

simulate_trade("<mint>", 100) -> { buyable, sellable, exit_usd, round_trip_loss_pct }

A honeypot shows buyable:true, sellable:false. A healthy token shows a small round-trip loss (slippage) and sellable:true.

I 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.

It'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.

Endpoint:

https://web-production-58d585.up.railway.app/mcp

Then 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).

── more in #developer-tools 4 stories · sorted by recency
── more on @rugcheck ai 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/how-to-detect-a-sola…] indexed:0 read:2min 2026-06-19 ·