47620 Solana Data
Pay-per-call Solana data for AI agents over x402: token, account, tx, trending. No signup, no key.
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"solana-data": {
"url": "https://47620.xyz/mcp"
}
}
}Remote endpoints
https://47620.xyz/mcpstreamable-httpTool inventory
Tools (8)
⚪solana_snapshot
Whole-network picture in ONE call: cluster health, current slot, epoch progress, SOL/USD price AND top trending pairs. Cheaper than making 5 separate calls. Pay-per-call ($0.01 USDC).
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}🟢solana_risk_check(address)
BEFORE sending SOL/USDC to any address, run this: returns account type (wallet vs program vs closed), balance, activity, and a 0-100 risk score with reasons and a proceed/review verdict. Use it to avoid paying a dead, wrong or program address. Pay-per-call ($0.01 USDC).
Input Schema
{
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "Solana address to check before paying"
}
},
"required": [
"address"
],
"additionalProperties": false
}⚪solana_token_report(mint)
Full token due-diligence in ONE call: live price, liquidity, 24h volume, DEX pairs, on-chain supply and mint authority. Use for token research instead of multiple lookups. Pay-per-call ($0.01 USDC).
Input Schema
{
"type": "object",
"properties": {
"mint": {
"type": "string",
"description": "SPL token mint address"
}
},
"required": [
"mint"
],
"additionalProperties": false
}⚪solana_health
Solana network health: current slot, epoch, and SOL/USD price. Pay-per-call ($0.001 USDC).
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}⚪solana_token(mint)
Live price, liquidity, 24h volume and DEX pairs for any Solana SPL token mint. Pay-per-call ($0.002 USDC).
Input Schema
{
"type": "object",
"properties": {
"mint": {
"type": "string",
"description": "SPL token mint address"
}
},
"required": [
"mint"
],
"additionalProperties": false
}⚪solana_account(address)
Native SOL balance plus every SPL token balance (incl. USDC) for a Solana address. Pay-per-call ($0.002 USDC).
Input Schema
{
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "Solana wallet address"
}
},
"required": [
"address"
],
"additionalProperties": false
}⚪solana_tx(signature)
Status, slot, fee, block time and transfer summary for a Solana transaction signature. Pay-per-call ($0.003 USDC).
Input Schema
{
"type": "object",
"properties": {
"signature": {
"type": "string",
"description": "Transaction signature"
}
},
"required": [
"signature"
],
"additionalProperties": false
}⚪solana_trending
Live trending / new Solana DEX pairs by 24h volume. A fresh feed for agents. Pay-per-call ($0.005 USDC).
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}