Skip to main content
aixyz is a framework for bundling AI agents into deployable services with built-in support for A2A, MCP, x402 payments, and ERC-8004 identity. Write your agent logic. aixyz handles protocol wiring, payment gating, and deployment.

How It Works

  1. Define your agent — Use Vercel AI SDK (ai@^6) to create agents with tools
  2. Configure identity and payments — Set up aixyz.config.ts with agent metadata and x402 payment settings
  3. Deploy — Run aixyz build and deploy to Vercel, Docker, or any Bun-compatible host
aixyz auto-generates a server that exposes:
EndpointProtocolDescription
/.well-known/agent-card.jsonA2AAgent discovery card
/agentA2AJSON-RPC endpoint with x402 payment gate
/mcpMCPTool sharing with MCP clients

Quick Example

bunx create-aixyz-app my-agent
cd my-agent
bun run dev
Your agent is running at http://localhost:3000 with A2A, MCP, and x402 payment support out of the box.