无需 API Key、无需注册。你的 agent 接上后,直接拥有 150+ 实时数据 & AI 工具。No API key, no signup. Once connected, your agent gets 150+ real-time data & AI tools instantly.
核心卖点:经 AI 总闸取数免费,只收 AI 档位费(约 $0.001/次起),比自己爬数据省 50–90% token。Key point: data via the AI Gateway is free — you only pay the AI tier (~$0.001/call). Saves 50–90% tokens vs scraping.
# 1) MCP (recommended): add to your MCP client config:
{
"mcpServers": { "agentdatum": { "url": "https://agentdatum.com/mcp" } }
}
# 2) OpenAI-compatible: point base_url at:
https://agentdatum.com/v1 (models: deepseek / novamind)
# 3) One-liner: just POST
curl -X POST https://agentdatum.com/api/v1/ai -H "Content-Type: application/json" -d '{"question":"your data question"}'
我们的 MCP 服务端已经上线并通过握手验证:https://agentdatum.com/mcp(streamable HTTP)。任何支持 MCP 的客户端,把下面这段配置贴进去,重启客户端即自动加载全部工具——这就是"全自动安装"。Our MCP server is live and handshake-verified: https://agentdatum.com/mcp (streamable HTTP). In any MCP-capable client, paste the config below, then restart the client and all tools load automatically — that is the "fully automatic install".
配置文件路径:
Windows %APPDATA%\Claude\claude_desktop_config.json · macOS ~/Library/Application Support/Claude/claude_desktop_config.jsonConfig file:
Windows %APPDATA%\Claude\claude_desktop_config.json · macOS ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"agentdatum": {
"url": "https://agentdatum.com/mcp"
}
}
}
保存后完全退出并重启 Claude Desktop,在对话里输入 用 agentdatum 查一下现在 BTC 价格 即可调用。After saving, fully quit and restart Claude Desktop, then type check the BTC price with agentdatum in a chat to call it.
配置文件路径:
Windows %USERPROFILE%\.cursor\mcp.json · macOS / Linux ~/.cursor/mcp.jsonConfig file:
Windows %USERPROFILE%\.cursor\mcp.json · macOS / Linux ~/.cursor/mcp.json
{
"mcpServers": {
"agentdatum": {
"url": "https://agentdatum.com/mcp"
}
}
}
重启 Cursor,按 Ctrl/Cmd + I 打开 Composer,让它调用 AgentDataHub 工具。Restart Cursor, press Ctrl/Cmd + I to open Composer, and let it call AgentDataHub tools.
配置文件路径:%APPDATA%\Code\User\globalStorage\saoudrizwan.cline\settings\cline_mcp_settings.json(Windows)Config file: %APPDATA%\Code\User\globalStorage\saoudrizwan.cline\settings\cline_mcp_settings.json (Windows)
{
"mcpServers": {
"agentdatum": {
"url": "https://agentdatum.com/mcp"
}
}
}
项目内 .vscode/mcp.jsonIn-project .vscode/mcp.json
{
"servers": {
"agentdatum": {
"type": "http",
"url": "https://agentdatum.com/mcp"
}
}
}
直接连 endpoint,或读取我们的安装清单 /.well-known/mcp.jsonConnect directly, or read our install manifest /.well-known/mcp.json
# 你的客户端 MCP 配置里加:
{
"mcpServers": {
"agentdatum": { "url": "https://agentdatum.com/mcp" }
}
}
# 或已在 MCP Registry 的客户端直接安装:
# mcp install com.agentdatum/gateway
工具列表(节选):list_products、get_product_info、ai_gateway、get_crypto_price、get_onchain_indicators、get_china_macro、get_airdrops_list、get_gold_signal、deepseek_chat、novamind_chat。Tool list (excerpt): list_products, get_product_info, ai_gateway, get_crypto_price, get_onchain_indicators, get_china_macro, get_airdrops_list, get_gold_signal, deepseek_chat, novamind_chat.
X-Wallet: 0x你的钱包地址(客户端不支持自定义 header 时,改用下方 ②/③ 方式显式传参)。Each wallet address gets 100 free calls / month. MCP clients don't send a wallet header by default; most tools are free and work out of the box. To use the full free quota or paid calls, add the header X-Wallet: 0xYOUR_WALLET to the MCP server config (if the client can't set custom headers, use method ②/③ below to pass it explicitly).我们提供 OpenAI 兼容的 /v1/chat/completions 端点,底座走 AI 总闸(取数免费,只收 AI 档位费)。你只需把 base_url 改成我们的地址,现有 OpenAI SDK 代码几乎不用改。We expose an OpenAI-compatible /v1/chat/completions endpoint, backed by the AI Gateway (data free, only the AI tier is charged). Just point base_url at us — your existing OpenAI SDK code barely changes.
from openai import OpenAI
client = OpenAI(
base_url="https://agentdatum.com/v1",
api_key="x402", # 占位即可,付费由 x402 协议在请求层完成
)
# 想用免费额度/追溯账单,就带上钱包地址
resp = client.chat.completions.create(
model="deepseek",
messages=[{"role":"user","content":"对比一下现在 BTC、ETH、SOL 的链上活跃度"}],
extra_headers={"X-Wallet": "0x你的钱包地址"},
)
print(resp.choices[0].message.content)
端点:POST https://agentdatum.com/v1/chat/completions · 模型名可用 deepseek / novamind。Endpoint: POST https://agentdatum.com/v1/chat/completions · Models: deepseek / novamind.
不想接 SDK?直接 POST 一个问题,我们自动注入实时数据、返回结构化答案。数据本身免费,只收一次 AI 档位费。No SDK? Just POST a question — we inject real-time data and return a structured answer. The data itself is free; you only pay one AI-tier fee.
curl -X POST https://agentdatum.com/api/v1/ai \
-H "Content-Type: application/json" \
-H "X-Wallet: 0x你的钱包地址" \
-d '{
"question": "美国上周初请失业金人数多少?对比前值和市场预期",
"wallet": "0x你的钱包地址"
}'
返回示例(节选):问题涉及的实时数据已被抓取并喂给模型,输出为紧凑结构化 JSON,比你自己爬省 50–90% token。Response (excerpt): the real-time data behind your question is fetched and fed to the model; output is compact structured JSON, saving 50–90% tokens vs scraping.
不想每次付小钱、也不想每次配钱包签名?包月即可——付一次,整月随便调,调用不撞付费墙。Don't want per-call micro-payments or wallet signing each time? Subscribe monthly — pay once, call freely all month, no payment wall.
钱包地址即身份,无需注册 API Key。购买方式(一行):Wallet address = identity, no API key. Buy with one line:
# 全量包月 $49.9(单类把 all 换成 single,并加 body "category":"crypto")
curl -X POST https://agentdatum.com/api/v1/subscribe/all \
-H "Content-Type: application/json" \
-H "X-Wallet: 0x你的钱包地址" \
-d '{}'
# 返回 402 → 用 x402 客户端付 USDC on Base → 权限自动记录,30天内该钱包调用全免墙
付完即生效。每月 100 次免费额度(含 AI 算力调用)每月自动重置——不买包月也有这 100 次。Takes effect instantly. The 100 free calls/month (including AI compute) auto-reset monthly — yours even without a plan.
你不需要先充值、不需要信用卡。调用付费端点时,服务端返回 HTTP 402 + 支付要求,你的 x402 客户端(Coinbase CDP / 任意 x402 SDK)自动用 USDC on Base 链上付一笔,立刻拿到数据。整个过程对 agent 是透明的。You don't pre-fund and don't need a credit card. When a paid endpoint is called, the server returns HTTP 402 + a payment requirement; your x402 client (Coinbase CDP / any x402 SDK) automatically pays USDC on Base on-chain and gets the data instantly. The whole flow is transparent to the agent.
完整价目表:ai-catalog.json · 发现清单:x402.json · 客服:/helpFull price list: ai-catalog.json · Discovery: x402.json · Support: /help
X-Wallet header;不带也能用大部分免费工具。Yes. x402 uses your wallet address as identity and pays per call on-chain. Send X-Wallet to claim free quota; without it most free tools still work.
Q:我的 agent 怎么知道有哪些工具?Q: How does my agent discover the tools?
MCP 客户端连上 /mcp 后会自动拿到 tools/list;非 MCP 方式看 catalog 或问 /help。An MCP client auto-receives tools/list after connecting to /mcp; non-MCP users read the catalog or ask /help.
Q:国内访问慢/被墙怎么办?Q: Slow/blocked access from China?
国内如访问缓慢,请联系我们(/help)获取就近接入节点与替代端点。If access from China is slow, contact us (/help) for a nearby access node and alternative endpoints.
Q:装完没反应?Q: Nothing happens after install?
确认配置保存后完全退出重启客户端;用 mcp.json 核对 endpoint;仍有问题问 /help 或联系我们。Make sure you fully quit and restart the client after saving; verify the endpoint against mcp.json; still stuck? Ask /help or contact us.