{
  "markdown": "# Voltix MCP — 14 AI Agent Tools for Claude\n\n14 production-ready tools accessible directly in Claude Code, Claude Desktop, and any MCP-compatible client. Each call makes a micropayment in USDC on Base — no API keys, no subscriptions, no accounts.\n\n## Tools\n\n| Tool | What it does | Cost |\n|------|-------------|------|\n| `alpha_probe` | **Complete DeFi alpha report** — whale flows + momentum tokens + best yields + market context in one call | $3.00 |\n| `chainprobe` | Deep on-chain intelligence for any Base address — token safety score OR wallet wealth tier, portfolio, risk flags | $0.50 |\n| `whale_scan` | Top whale wallets by USD inflow on Base — find smart money accumulation in real time | $0.50 |\n| `web_search` | Search the web, get structured results (titles, URLs, snippets) | $0.15 |\n| `defi_yields` | Best APY pools on Base from DeFiLlama — filter by min APY, TVL, stablecoin-only | $0.15 |\n| `momentum_tokens` | Trending Base tokens with momentum scores — trending rank + volume surge + price action | $0.25 |\n| `liquidation_map` | Lending pools at liquidation risk on Base — utilization rates across Aave, Compound, Moonwell | $0.25 |\n| `parse_document` | Extract structured JSON from any invoice, receipt, or contract image | $0.10 |\n| `fetch_url` | Extract clean readable text from any URL | $0.05 |\n| `crypto_prices` | Real-time prices, 24h change, volume for up to 25 coins | $0.05 |\n| `gas_prices` | Live gas prices on Ethereum, Base, Arbitrum, Optimism, Polygon | $0.05 |\n| `ens_lookup` | Resolve ENS names ↔ Ethereum addresses | $0.05 |\n| `ai_query` | AI inference via Gemini 2.5 Flash | $0.05 |\n| `agent_memory` | Persistent key-value memory across Claude sessions | $0.02 |\n\n## AlphaProbe — the flagship tool\n\n`alpha_probe` is a single call that replaces 15+ individual API calls:\n\n```json\n// No input required\n{}\n→ {\n  \"market_context\": { \"eth_usd\": 3420, \"btc_usd\": 67000, \"sentiment\": \"NEUTRAL\" },\n  \"alpha_signals\": [\n    {\n      \"type\": \"TRENDING_BASE_TOKEN\",\n      \"confidence\": \"HIGH\",\n      \"token\": { \"symbol\": \"AERO\", \"name\": \"Aerodrome\" },\n      \"evidence\": [\"Trending #2 on CoinGecko\", \"+18.4% in 24h\", \"$42M volume\"],\n      \"action\": \"WATCH_FOR_PULLBACK\",\n      \"risk\": \"HIGH\"\n    },\n    {\n      \"type\": \"WHALE_ACCUMULATION\",\n      \"confidence\": \"HIGH\",\n      \"evidence\": [\"12 whale wallets received $50k+ in recent transfers\", \"Tokens moving: USDC, WETH\"],\n      \"action\": \"MONITOR_WHALE_WALLETS\"\n    },\n    {\n      \"type\": \"STABLE_YIELD_OPPORTUNITY\",\n      \"protocol\": \"aave-v3\",\n      \"evidence\": [\"8.4% APY on stablecoin\", \"$45M TVL\", \"On Base — low gas\"],\n      \"action\": \"DEPOSIT_NOW\"\n    }\n  ],\n  \"whale_activity\": [...],\n  \"top_yields\": [...]\n}\n```\n\n## ChainProbe — deep address intelligence\n\n`chainprobe` auto-detects whether an address is a **token** or **wallet**:\n\n**Token input** → safety score 0–100 covering: contract verification, token age, holder count, CoinGecko listing, Blockscout scam flag.\n\n**Wallet input** → wealth tier (`RETAIL` / `HOLDER` / `WHALE` / `MEGA_WHALE`), activity type (`HUMAN` / `BOT` / `INACTIVE`), full token portfolio with USD values, total net worth estimate, and risk flags.\n\n```json\n// Token example\n{ \"address\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\" }\n→ { \"type\": \"token\", \"score\": 95, \"risk_level\": \"LOW\", \"verdict\": \"Token passes all major safety checks.\" }\n\n// Wallet example\n{ \"address\": \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\" }\n→ { \"type\": \"wallet\", \"classification\": { \"whale_tier\": \"MEGA_WHALE\", \"activity_type\": \"HUMAN\" }, \"portfolio\": { \"estimated_total_usd\": 340000 } }\n```\n\n## Setup\n\n### 1. Get USDC on Base\n\nYou need a small amount of USDC on the Base network to pay for tool calls. ~$5 covers hundreds of calls.\n\n1. Buy USDC on [Coinbase](https://coinbase.com)\n2. Send to your wallet on Base network\n3. Export your wallet's private key (Coinbase Wallet → Settings → Manage wallets → Export private key)\n\n### 2. Install\n\n```bash\ngit clone https://github.com/clearcheck-uk/voltix-mcp\ncd voltix-mcp\nnpm install\n```\n\n### 3. Add to Claude Code\n\n```bash\nclaude mcp add voltix-tools --scope user \\\n  -e PRIVATE_KEY=0xYOUR_PRIVATE_KEY \\\n  -- node /path/to/voltix-mcp/server.mjs\n```\n\n### 4. Add to Claude Desktop\n\nAdd to your `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"voltix-tools\": {\n      \"command\": \"node\",\n      \"args\": [\"/path/to/voltix-mcp/server.mjs\"],\n      \"env\": {\n        \"PRIVATE_KEY\": \"0xYOUR_PRIVATE_KEY\"\n      }\n    }\n  }\n}\n```\n\n## Usage in Claude\n\nOnce connected, just ask Claude naturally:\n\n- *\"Use chainprobe to check if 0x1234... is safe to buy\"*\n- *\"Search the web for latest Base chain news\"*\n- *\"What's the current gas price on Ethereum?\"*\n- *\"Look up what ENS name vitalik's address resolves to\"*\n- *\"Remember this in agent_memory under namespace my-project: key='goal', value='build DeFi bot'\"*\n\n## Security\n\n- Your private key never leaves your machine — it's only used locally to sign payment authorizations\n- Each payment is a signed EIP-3009 `TransferWithAuthorization` — the signature authorizes a specific amount to a specific recipient at a specific time\n- Payments are structural micropayments, not on-chain transactions — there is no gas cost\n\n## Powered by\n\nBuilt on the [x402 payment protocol](https://x402.org) — the open HTTP standard for AI agent micropayments, built by Coinbase.\n\n## License\n\nMIT\n",
  "bytes": 5359,
  "sha": "8ee6fa3bec7cec06a0dbfac0e04ce2d1f3de0ae31f5a830c1e8ef719d3a7abb8",
  "repo_slug": "clearcheck-uk/voltix-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_clearcheck_uk_voltix_mcp_134a0cfe/readme"
}