Documentation
Developer guides, API reference, and integration docs for AgentZone.
Getting Started
Quick setup guide for running AgentZone locally and connecting to the ERC-8004 ecosystem.
Architecture
System design — Envio HyperIndex, Turso DB, Cloudflare Workers, Next.js frontend.
API Reference
REST + JSON-LD endpoints for agents, search, analytics, discovery, and payments.
TypeScript SDK
Official TypeScript SDK — zero dependencies, full type safety, Node + browser compatible.
MCP Server
Model Context Protocol server — expose AgentZone as tools for LLMs (Claude, GPT, etc).
Agent Discovery
How agents are indexed from on-chain events and enriched with metadata.
ERC-8004 Identity
Soulbound agent identity tokens — registration, metadata, transfers.
x402 Payments
Payment protocol integration — USDC transfers, verification, reporting.
MVP Specification
Complete product specification with architecture, features, APIs, and user flows.
TypeScript SDK
npm install agentzone-sdkimport AgentZone from 'agentzone-sdk';
const client = new AgentZone();
const { agents } = await client.agents.list({
sort: 'trust_score',
limit: 10
});View on npm →MCP Server
npm install -g @rizzrazzah/agentzone-mcp// claude_desktop_config.json
{
"mcpServers": {
"agentzone": {
"command": "agentzone-mcp"
}
}
}View on npm →REST API
https://agentzone.fun/api/v1/