RugCheck AI
On-chain Solana token safety for AI trading agents.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Verify Token Safety: Run an on-chain safety audit on a Solana token before trading. Reads the mint directly and flags an active mint authority (supply can be inflated), an active freeze authority (you
- Check Authorities: Check mint/freeze authority and Token-2022 traps, read directly from the chain.
- Simulate Sell: Check whether the token can actually be sold (honeypot check). Combines on-chain constraints (non-transferable / pausable extensions, freeze authority) with a live Jupiter sell-route pr
What data it sees
Do you need an account
No: the server works without sign-in
On-chain Solana token safety for AI trading agents. Screens any SPL / Token-2022 token for rugs, honeypots, active mint/freeze authority and dangerous extensions (permanent delegate, transfer hook) by reading the chain directly, then builds the buy as an unsigned, screened Jupiter swap the agent signs. 15 tools, remote — no install.
Server tool list (4)
Raw names from tools/list. Only developers need these.
| verify_token_safety | Run an on-chain safety audit on a Solana token before trading. Reads the mint directly and flags an active mint authority (supply can be inflated), an active freeze authority (your tokens can be frozen), dangerous Token-2022 extensions, and whether the token has a live, routable market (illiquid / no market is itself a risk). |
| check_authorities | Check mint/freeze authority and Token-2022 traps, read directly from the chain. |
| simulate_sell | Check whether the token can actually be sold (honeypot check). Combines on-chain constraints (non-transferable / pausable extensions, freeze authority) with a live Jupiter sell-route probe — a token with no sell route is effectively a honeypot even if no extension blocks it. |
| execute_safe_swap | Buy `amount_usd` of the token in one step — but only AFTER it passes the on-chain safety screen. This is the point of a safety router: the agent never executes an unscreened trade. The mint is re-screened here (same check as verify_token_safety); if it carries a dangerous Token-2022 extension, no swap is built. The wallet's holdings are read to choose the funding position for the swap. Returns an UNSIGNED Jupiter transaction (Jito-tipped, MEV-resistant) for the agent to sign — keys never leave the agent. |