RugCheck AI
On-chain Solana token safety for AI trading agents.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- 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
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
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.
Список инструментов сервера (4)
Технические названия из tools/list. Нужны только разработчикам.
| 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. |