Every Solana wallet accumulates locked SOL in dormant token accounts — dead memecoins, old airdrops, empty ATAs. This MCP server lets AI assistants find and reclaim it.
Two tools:
scan_claimable_sol — Check any wallet for reclaimable SOL. Read-only, no keypair needed.
claim_sol — Vibe Claiming. Burns worthless token balances, closes dormant accounts, and reclaims the rent SOL. Transactions are built and signed locally — your private key never leaves your machine.
How it works:
- You: "scan my wallet for reclaimable SOL"
- AI: "Found 0.58 SOL across 277 dormant accounts"
- You: "claim it"
- AI: builds transactions, signs locally, broadcasts to Solana
No browser. No dApp. No wallet connect. Just ask your AI and it does it.
A 5% service fee is collected on-chain by the UnclaimedSOL program. Stake account claims are available at unclaimedsol.com.
Works with Claude Code, Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
Server Config
{
"mcpServers": {
"unclaimed-sol": {
"command": "node",
"args": [
"/absolute/path/to/unclaimed-sol-mcp/dist/index.js"
],
"env": {
"SOLANA_KEYPAIR_PATH": "~/.config/solana/id.json",
"SOLANA_RPC_URL": "https://your-rpc-provider.com"
}
}
}
}