loading…
Search for a command to run...
loading…
An MCP server that enables AI assistants to analyze Solana wallets for empty or low-value token accounts. It allows users to identify opportunities to recover S
An MCP server that enables AI assistants to analyze Solana wallets for empty or low-value token accounts. It allows users to identify opportunities to recover SOL rent by closing or burning these accounts through the SOL Claimer API.
npm version License: MIT Node.js Version CI
A Model Context Protocol (MCP) server that provides seamless integration between LLM applications (ChatGPT, Claude, etc.) and the SOL Claimer API. This server enables AI assistants to analyze Solana token accounts and help users recover rent from empty and low-value token accounts.
SOL Claimer is a Solana SPL token manager focused on cleaning token accounts and recovering locked rent.
On Solana, token accounts hold a rent-exempt SOL reserve. When an account is no longer needed, closing it returns that SOL to your wallet. SOL Claimer helps you find eligible accounts (empty or low-value), then guides you to burn/clear balances and close accounts so you can recover the rent safely.
https://api.solclaimer.appSOLCLAIMER_API_URL (optional, defaults to https://api.solclaimer.app)# Install globally
npm install -g @solclaimer/mcp
# Or install locally in your project
npm install @solclaimer/mcp
# Clone the repository
git clone https://github.com/solclaimer/mcp.git
cd mcp
# Install dependencies
npm install
# Build the project
npm run build
# Start the server
npm start
Optionally set the SOL Claimer API URL:
export SOLCLAIMER_API_URL=https://api.solclaimer.app
If not set, defaults to https://api.solclaimer.app.
# Watch TypeScript changes and run
npm run dev
# Format code
npm run format
# Lint code
npm run lint
Analyzes a Solana wallet for empty token accounts that can be closed to recover rent.
Parameters:
wallet_address (string, required): The Solana wallet address to analyzeResponse:
accountsToClose - Number of empty accounts foundtotalSol - Total SOL available for recoveryAnalyzes a wallet for token accounts with balances worth less than $1 USD that can be burned and closed.
Parameters:
wallet_address (string, required): The Solana wallet address to analyzeResponse:
accountsToBurn - Number of burnable accounts foundtotalSol - Total SOL available for recoverytotalUsdValue - Combined USD value of all burnable tokensaccountDetails - Array of detailed account information including:Analyzes a wallet for token accounts with amount > 0 that can be swapped and then closed.
Parameters:
wallet_address (string, required): The Solana wallet address to analyzeResponse:
accountsToSwap - Number of swappable accounts foundtotalSol - Total SOL available for recovery after swap and closetotalUsdValue - Combined USD value of all swappable tokensaccountDetails - Array of detailed account information including token name and symbolReturns documentation about SOL Claimer features and capabilities.
Parameters: None
Response:
User: "Can you analyze my Solana wallet at 7cvkjYAkUYs4W8XcXsca7cBrEGFeSUjeZmKoNBvEwyri?"
Claude: [Uses analyze_empty_accounts, analyze_burnable_accounts, and analyze_swappable_accounts tools]
"Based on the analysis, I found:
- 5 empty token accounts: 0.0101964 SOL can be recovered
- 12 burnable accounts: 0.0244713 SOL can be recovered (worth $0.52)
..."
Any MCP-compatible client can connect to this server using:
{
"mcpServers": {
"solclaimer": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": {
"SOLCLAIMER_API_URL": "https://api.solclaimer.app"
}
}
}
}
src/
├── index.ts # Main MCP server implementation
tsconfig.json # TypeScript configuration
package.json # Dependencies and scripts
SOLCLAIMER_API_URL7cvkjYAkUYs4W8XcXsca7cBrEGFeSUjeZmKoNBvEwyriUNLICENSED
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"sol-claimer-mcp-server": {
"command": "npx",
"args": []
}
}
}Web content fetching and conversion for efficient LLM usage.
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also