INDIVIDUAL MCP TOOL
onchain_agent_get_metrics
Get live ecosystem metrics: the ERC-8004 Identity Registry registered-agent count (read from Ethereum mainnet) and the curated Top Project Tokens index (only tokens of directory-listed projects — never the whole agent-token category or its aggregate market cap).
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name, description or schema mentions credentials.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.onchain-agent-mcp-server]
url = "https://satohub.ai/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"onchain-agent-mcp-server": {
"type": "http",
"url": "https://satohub.ai/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: onchain-agent-mcp-server
Remote MCP URL: https://satohub.ai/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"onchain-agent-mcp-server": {
"url": "https://satohub.ai/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"onchain-agent-mcp-server": {
"type": "http",
"url": "https://satohub.ai/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "onchain-agent-mcp-server",
"transport": "streamable-http",
"url": "https://satohub.ai/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
onchain_agent_search_resources— Search the Onchain Agent directory of onchain agents, frameworks, skills, and tooling.onchain_agent_get_resource— Get the full record for one directory resource by slug, optionally with its recent activity feed (releases/posts).onchain_agent_get_deploy_spec— Get the structured deploy manifest for one resource by slug — the essential, install-and-instantiate information an agent needs to BUILD from it: runtime, install command(s), entry snippet, required keys/env/wallet/RPC, chains, license, whether it is itself an MCP server, and a deploy_status.onchain_agent_recent_changes— Get recorded changes across the directory — the auditable Listing History.onchain_agent_list_categories— List all resource categories with counts, most populated first.onchain_agent_list_chains— List all blockchains represented in the directory with resource counts, spotlight chains first (Base, Ethereum, Solana, COTI, Injective…).onchain_agent_get_news— Get the Onchain Agent news feed — official releases (GitHub), announcements (project X posts), and reputable RSS.onchain_agent_get_wiki_page— Get a full Onchain Agent wiki page by slug — an editorial explainer (summary, why it matters, how it works, key components, examples, risks, related resources/pages).