OnchainAI
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OnchainAIfind a safe tool to bridge USDC to Base"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OnchainAI
Crypto tools, unified. Discover, vet, and install MCP, CLI, SDK, API, x402, RWA, and AI-agent tools — from the web or straight from your agent.
Live: onchain-ai.xyz · Connect hub: onchain-ai.xyz/connect
Why?
Crypto tooling is fragmented across CryptoSkill, Smithery, npm, GitHub topics, and dozens of separate registries — and most of it is hard to judge: is this MCP server official? Is the install command safe? Does it charge x402 payments on every call?
OnchainAI auto-discovers tools from multiple sources, normalizes them into one 3-axis taxonomy (Function × Asset Class × Actor), scores trust and install risk, and exposes everything to both humans (web UI) and agents (MCP server, plugin, skill) — so "find me a safe tool to bridge USDC to Base" is one question, not an afternoon of research.
Related MCP server: AgentStamp
Use it from your agent (60 seconds)
Default MCP is a no-auth directory endpoint (discovery/metadata — not wallet
custody). Free discovery on public /mcp (search, detail, compare, install
guides, categories, …). Optional OnchainAI-owned premium tools may return HTTP 402
and settle via x402 ($0.01 USDC for export_toolkit /
recommend_verified_tool / gap_audit; ~$0.001 USDC for
check_endpoint_health). Website browse stays free.
https://www.onchain-ai.xyz/mcpOKX marketplace integrators only: paid package path
https://www.onchain-ai.xyz/mcp/okx (~$0.1 every tools/call when the OKX gate
is active). Coding agents and the Claude plugin must use /mcp, not /mcp/okx.
Client | Setup |
Claude Code |
|
Claude Desktop / Web | Settings → Connectors → Add custom connector → paste the URL above |
Cursor / VS Code | One-click deeplinks on the connect hub, or paste the JSON below |
ChatGPT | Settings → Connectors (Developer mode) → new connector with the URL above |
Anything else |
|
{
"mcpServers": {
"onchainai": { "type": "http", "url": "https://www.onchain-ai.xyz/mcp" }
}
}Full per-client walkthroughs (Codex, Windsurf, Gemini CLI, …): docs/CONNECT.md or the live /connect page.
MCP tools (public POST /mcp)
Tool | Billing | What it does |
| Free | Search by capability ("bridge USDC to Base"), filter by category/chain, sort by relevance/trust/stars/recent |
| Free | Full metadata for one tool: trust score, install risk, chains, repo, x402 pricing |
| Free | Platform-specific install steps (claude / cursor / generic / cli) with safety gating — |
| Free | Browse the taxonomy with tool counts |
| Free | Public coverage snapshot: totals, categories, trust, x402, featured |
| Free | Side-by-side comparison of 2–4 tools on trust, risk, chains, pricing |
| Free | Probe history and catalog x402 trends (metadata) |
| $0.01 USDC | Export a JSON + markdown install kit by slugs or category |
| $0.01 USDC | Pick one verified/live tool for an intent with rejection reasons |
| $0.01 USDC | Decompose an intent and report catalog coverage gaps |
| ~$0.001 USDC | Live endpoint probe + 30-day uptime for a listed x402 tool (HTTP 402 handshake) |
Linking your account from a coding agent (/connect#agent-sync) unlocks three more
(account link ≠ payment): save_to_toolkit, save_stack_to_blueprint, and link_status.
Full hybrid table (incl. /mcp/okx): docs/CONNECT.md.
Claude Code plugin
One command wires up the MCP server, a /find-tool command, and a crypto-tools skill:
/plugin marketplace add Coinyak/onchainai
/plugin install onchainai@onchainaiThe bundle lives in plugin/onchainai/ — it connects only
OnchainAI's own read-only endpoint, never auto-runs install commands, and always
discloses x402 pricing before recommending a paid tool.
Agent skill
plugin/onchainai/skills/onchainai-crypto-tools/SKILL.md
teaches an agent when to search the directory, how to rank trust signals, and the
hard safety rules (never install critical-risk tools, always surface x402 costs).
It ships with the plugin; you can also copy the skill directory into
~/.claude/skills/ or upload it to any agent runtime that supports Agent Skills.
Features
Auto-discovery crawler — CryptoSkill, GitHub topics, npm, web3-mcp-hub, MCP registry, on cron schedules with dedup + relevance scoring
3-axis classification — Function × Asset Class × Actor, plus chain tagging
Trust & safety pipeline — trust scores, identity-cluster checks (repo/npm/homepage), install-risk analysis with a hard block on
criticalcommands, operator review queue, quarantinex402 awareness — paid tools carry price metadata, verification flags, and referral/attribution disclosure (policy below)
MCP server for agents — the read-only tools above, rate-limited and sanitized
Claude Code plugin + skill — one-command onboarding for agent users
Auth — GitHub OAuth (primary); email magic link where configured
Community layer — submissions, comments, upvotes, bookmarks, toolkit, compare, blueprints
Admin dashboard — tool review, categories, crawler control, featured carousel, users, site settings
x402 & referral policy
OnchainAI is a tool directory MCP (discovery/metadata), not a custody wallet:
Third-party x402 in the catalog is attribution and trust metadata only — we publish price/endpoint flags (
payment_verified,x402_endpoint_verified,price_verified) and never proxy those payments.We record anonymous referral/attribution events (views, install-guide fetches) to support revenue-share agreements with tool owners.
We never hold user funds, act as a third-party payment gateway, or invent undocumented
referrer/splitpayment fields.OnchainAI-owned premium MCP tools (
export_toolkit,recommend_verified_tool,gap_audit,check_endpoint_health) may settle x402 to our payee wallet when called — that is selling our own service, not custodying others.Unverified third-party x402 tools remain visible when they pass the normal public quality gate — verification is a badge, not a hiding mechanism.
Details: docs/X402_REFERRAL_SPEC.md, hybrid connect: docs/CONNECT.md.
Architecture
┌─ Vercel ──────────────┐ ┌─ Railway ─────────────────────────┐
│ Next.js frontend │──────│ Rust binary (Axum) │
│ /connect, /tools, ... │ /api │ ├─ REST API (/api/v2) │
│ proxies /api /auth │ /mcp │ ├─ MCP server (POST /mcp) │
│ /mcp to the API │ │ ├─ Auth (GitHub OAuth + JWT) │
└───────────────────────┘ │ └─ Crawler (tokio-cron) │
└────────────┬──────────────────────┘
│ sqlx
┌─ Supabase Postgres (RLS) ─┐
└───────────────────────────┘API/MCP: Rust — Axum + sqlx + tokio-cron-scheduler, one binary (
cargo run --features ssr)Frontend: Next.js (App Router) on Vercel, rewrites
/api,/auth,/mcpto the Railway APIDB: Supabase Postgres with RLS; the public read gate is enforced in both SQL policies and server queries
Run it yourself
git clone https://github.com/Coinyak/onchainai
cd onchainai
cp .env.example .env # fill in Supabase URL/keys, GitHub OAuth, JWT secret
# API (port 3000)
cargo run --features ssr
# Frontend (port 3001, proxying to the API)
cd frontend && npm ci && API_PROXY_TARGET=http://localhost:3000 npm run dev -- --port 3001The crate's default feature set is empty so server deps don't leak into any WASM/client build. Plain
cargocommands that touch server code need--features ssr.
Common checks:
cargo test --features ssr # tests
cargo clippy --features ssr -- -W clippy::all # lint
cargo fmt --check # format
./scripts/agent-harness-check.sh # agent/dev harness self-checkRepository layout
Path | What lives there |
| Rust API: MCP server, REST |
| Next.js app (Vercel): public UI + admin dashboard |
| Claude Code plugin bundle (MCP config, |
| sqlx Postgres migrations (RLS policies included) |
| Design docs, specs, operator guide (index) |
| Dev/deploy/verification gates (see |
| Skills and harness config for AI coding agents working on this repo |
Documentation
File | Purpose |
Connect any MCP client, install the plugin/skill | |
Architecture, DB schema, crawler, MCP server | |
x402 referral/attribution design (no-custody) | |
Public-launch checklist and roadmap spec | |
Security design: auth, RLS, headers, rate limiting | |
Full UI spec | |
Operator/admin playbook (Korean) | |
Build coherence, smoke gates, Railway/Vercel deploy | |
Entry point for AI coding agents |
Contributing & security
Contributions welcome — see CONTRIBUTING.md. The fastest way to help is submitting missing tools at onchain-ai.xyz/submit.
Security reports: see SECURITY.md. Please do not open public issues for vulnerabilities.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAquality-maintenanceAn MCP server that transforms SKILL.md files into executable tools for AI agents, allowing them to discover and pay for services via the x402 protocol. It supports automatic payments on Stellar and EVM networks, enabling seamless integration of premium API skills.Last updated651
- AlicenseAqualityDmaintenanceTrust intelligence MCP server for AI agents. 19 tools for identity stamps, reputation scoring (0-100), agent registry, forensic audit trails, ERC-8004 bridge, and A2A passports via x402 USDC micropayments.Last updated191Apache 2.0
- AlicenseCqualityCmaintenanceMCP server bringing 100+ x402-paid APIs to AI agents (Claude, Cursor, MCP-aware clients). Auto-discovers tools from CDP Bazaar; handles USDC micropayments on Base.Last updated1002451MIT
- AlicenseBqualityBmaintenanceAn MCP server providing 22 pay-per-call utility tools for AI agents (scrape, validate, embed, store, moderate, notify, convert, prevent loops) without accounts or API keys, using USDC payments via the x402 protocol.Last updated17501MIT
Related MCP Connectors
Agent-commerce MCP server for x402/USDC payments and affiliate splits on Base.
54 AI agent tools: OSINT, intel feeds, DeFi, crypto, weather, DNS, proxies. x402 micropayments.
Search a curated directory of 300+ verified AI agents, MCP servers, and agentic tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Coinyak/onchainai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server