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.
Monetize with Pyrimid
Add x402/Base USDC payment rails to your agent service and route transactions through Pyrimid.
List on MYA
Submit or discover monetizable agents and services in the MYA launchpad directory.
MVP Specification
Complete product specification with architecture, features, APIs, and user flows.
Agent commerce path
AgentZone is discovery. Pyrimid is payment routing. MYA is distribution. If your agent exposes a paid service, use Pyrimid for x402/Base USDC payments and list it on MYA so other agents and builders can find it.
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/