MCP server for AgentData API - crypto market data for AI agents via x402
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/speteai/agentdata-mcp{
"mcpServers": {
"agentdata-mcp": {
"command": "node",
"args": ["/path/to/agentdata-mcp/dist/index.js"]
}
}
}Resumen de MCP Servers
# AgentData MCP Server
**Model Context Protocol server** exposing 16 crypto market data tools for Claude Desktop, Cursor, and any MCP-compatible AI client. Payments via [x402](https://www.x402.org) / USDC on Base Mainnet.
[](https://github.com/speteai/agentdata-mcp)
[](https://registry.modelcontextprotocol.io)
[](https://www.x402.org)
[](LICENSE)
## What this is
A thin MCP wrapper around the [AgentData API](https://agentdata-api.com) — a production x402 service on Base Mainnet. Any MCP-compatible LLM can use these 31 tools with no setup beyond adding one line to your client config — four of them free, so you can try before paying.
## Two modes
**Proxy mode (default)** — No wallet needed. When a tool is called, the server returns the x402 payment instructions so the MCP client can handle payment however it prefers.
**Auto-pay mode** — Set `AGENTDATA_BUYER_PRIVATE_KEY` to a wallet funded with USDC on Base. The server signs ERC-3009 `TransferWithAuthorization` automatically using viem. Payments are gasless for the buyer — the facilitator covers settlement gas.
## Quick Start
### Claude Desktop
Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):
**Option 1: Remote MCP (easiest, no install)**
```json
{
"mcpServers": {
"agentdata": {
"url": "https://agentdata-api.com/mcp"
}
}
}
```
**Option 2: Local stdio**
```json
{
"mcpServers": {
"agentdata": {
"command": "npx",
"args": ["-y", "agentdata-mcp"],
"env": {
"AGENTDATA_BUYER_PRIVATE_KEY": "0xYourWalletKeyHere"
}
}
}
}
```
Restart Claude Desktop. The tools become available immediately.
### Cursor
Settings → MCP → Add Server with the same config as above.
### Install from source
```bash
git clone https://github.com/speteai/agentdata-mcp.git
cd agentdata-mcp
npm install
node index.js
```
## Available Tools
Generated from the running service, not maintained by hand — the old table listed 16 tools
at prices that had drifted (`get_crypto_prices` was shown at $0.001 and costs $0.002).
Four tools are free, including the calibration record: read that before trusting any signal.
| Tool | Price | What it gives you |
|------|-------|-------------------|
| `try_crypto_prices` | **free** | FREE — real-time prices for BTC, ETH, SOL, BNB, XRP |
| `try_sentiment` | **free** | FREE — current market sentiment |
| `try_funding_rates` | **free** | FREE — perpetual funding rates |
| `get_signal_calibration` | **free** | FREE — How often the signals here actually turned out right, scored against… |
| `get_changes_since_last_call` | $0.001 | Only what changed for a signal since THIS wallet last paid for it |
| `watch_condition` | $0.010 | Register a standing condition and let the always-on server watch it for you |
| `get_market_pulse` | $0.018 | Bundle for $0.018 USDC: 8 signals in one call and one settlement — sentimen… |
| `get_crypto_prices` | $0.002 | Get real-time prices for BTC, ETH, SOL, BNB, XRP. |
| `get_funding_rates` | $0.002 | Get perpetual futures funding rates for BTC/ETH/SOL with long/short signals. |
| `get_funding_predictions` | $0.003 | Predicted next funding rate for BTC/ETH/SOL on MEXC, with time to settlement |
| `get_market_overview` | $0.003 | Get full market overview with sentiment bias, arbitrage detection, funding … |
| `get_volatility` | $0.002 | Get 24h volatility, range, and annualized volatility for BTC/ETH/SOL. |
| `get_liquidation_levels` | $0.003 | Get estimated liquidation zones by leverage (5x/10x/20x) for BTC/ETH/SOL. |
| `get_correlation` | $0.002 | Get 30-day price correlation matrix (ETH/BTC, SOL/BTC, SOL/ETH). |
| `get_gas_prices` | $0.002 | Get current gas prices for Base, Ethereum, Solana with USD cost estimation. |
| `get_base_activity` | $0.003 | Get Base Mainnet network activity: TPS, block stats, gas utilization. |
| `get_defi_yields` | $0.003 | Get top DeFi yield opportunities from Aave, Compound, Morpho, Pendle (via D… |
| `get_arbitrage_opportunities` | $0.005 | Get cross-exchange arbitrage opportunities between MEXC, Binance, Bybit, OKX. |
| `get_dex_vs_cex` | $0.005 | Get DEX aggregated prices vs CEX prices with spread analysis for BTC/ETH/SOL. |
| `get_technical_indicators` | $0.003 | Get RSI, MACD, Bollinger Bands, ATR for a symbol/interval. |
| `get_support_resistance` | $0.005 | Get support & resistance levels via fractal analysis on 4h timeframe. |
| `get_sentiment` | $0.002 | Get composite market sentiment: Fear & Greed Index + Funding-based + compos… |
| `get_stablecoin_health` | $0.002 | Get stablecoin peg monitoring (USDC, DAI live depeg check) + top 10 stablec… |
| `get_historical` | $0.010 | Get historical OHLCV candles for backtesting. |
| `get_positioning` | $0.005 | Long/short positioning ratios across venues. |
| `get_etf_flows` | $0.005 | Daily spot BTC/ETH ETF net flows in millions USD, with 30 days of history. |
| `get_macro_onchain` | $0.003 | Macro on-chain indicators. |
| `get_supply` | $0.003 | Circulating, total and max supply for 18 coins, with the circulating-to-tot… |
| `get_signal_history_7d` | $0.005 | The last 7 days of a recorded signal, not just its current value |
| `get_signal_history_30d` | $0.012 | The last 30 days of a recorded signal |
| `get_signal_history_full` | $0.020 | The complete recorded series for a signal |
Two further tools exist in the catalogue but are withheld until their data base is deep
enough to be worth charging for; they appear here automatically once they are served.
## Environment Variables
| Variable | Default | Description |
|----------|---------|-------------|
| `AGENTDATA_BUYER_PRIVATE_KEY` | — | Wallet for auto-pay (optional) |
| `AGENTDATA_BASE_URL` | `https://agentdata-api.com` | Override API base URL |
## Cost Economics
For an agent querying every paid tool once: **~$0.139 USDC**. The four free tools cost nothing,
and `get_market_pulse` bundles eight signals for $0.018 instead of $0.022 bought separately.
For common queries (prices + sentiment): **~$0.002 USDC per full context update**.
Fund your buyer wallet with $5 USDC → good for ~2500 sentiment checks or ~150 full backtesting queries.
No ETH needed on the buyer wallet. The AgentData facilitator pays settlement gas.
## Related
- **[agentdata-api](https://github.com/speteai/agentdata-api)** — the underlying service
- **[elizaos-plugin-agentdata](https://github.com/speteai/elizaos-plugin-agentdata)** — ElizaOS plugin version
- **Live service:** https://agentdata-api.com
- **Admin dashboard:** https://agentdata-api.com/admin
## Keywords
Model Context Protocol, MCP server, Claude Desktop MCP, Cursor MCP, crypto market data MCP, x402 MCP, AI agent tools, agentic payments, USDC micropayments, Base Mainnet API, DeFi data for AI, crypto tools for LLM, autonomous agent data, agent economy, DeFAI
## License
MIT — see [LICENSE](LICENSE).
Lo que la gente pregunta sobre agentdata-mcp
¿Qué es speteai/agentdata-mcp?
+
speteai/agentdata-mcp es mcp servers para el ecosistema de Claude AI. MCP server for AgentData API - crypto market data for AI agents via x402 Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-25.
¿Cómo se instala agentdata-mcp?
+
Puedes instalar agentdata-mcp clonando el repositorio (https://github.com/speteai/agentdata-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar speteai/agentdata-mcp?
+
Nuestro agente de seguridad ha analizado speteai/agentdata-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene speteai/agentdata-mcp?
+
speteai/agentdata-mcp es mantenido por speteai. La última actividad registrada en GitHub es del 2026-08-25, con 0 issues abiertos.
¿Hay alternativas a agentdata-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega agentdata-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/speteai-agentdata-mcp)<a href="https://claudewave.com/repo/speteai-agentdata-mcp"><img src="https://claudewave.com/api/badge/speteai-agentdata-mcp" alt="Featured on ClaudeWave: speteai/agentdata-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!