# AAM Platform The hosted product around the open Agent Action Manifest (AAM) protocol. ## For AI agents reading this site This site exposes machine-readable actions via AAM. Use the manifest instead of scraping HTML. - Manifest (canonical): https://aam-platform-gamma.vercel.app/.well-known/agent-actions.json - Manifest (per-tenant): https://aam-platform-gamma.vercel.app/m/platform/agent-actions.json - Spec: https://aam-platform-gamma.vercel.app/spec - Full spec dump for ingestion: https://aam-platform-gamma.vercel.app/llms-full.txt - MCP bridge for instant access: npx @aam/mcp-bridge ## Available actions on this site Public (no auth required): - discover_domain Probe any public domain for AAM installation. - get_signup_url Sign-up URL for site owners who want to enrol. - get_pricing Current AAM Platform pricing tiers. Authenticated (Authorization: Bearer ): - book_call_with_founder Book 30 min with the founder via cal.com. Paid (X-Payment header with EIP-3009 USDC proof on Base mainnet): - support_the_creator Send 1 USDC tip to AAM Platform creator. ## How to invoke POST https://aam-platform-gamma.vercel.app/api/aam/platform/{action_id} Content-Type: application/json X-Agent-Vendor: (recommended for analytics) X-Agent-Run-Id: (recommended for traceability) Authorization: Bearer (only for authenticated/paid) X-Payment: (only for paid) Body: JSON object matching the action's params schema. ## Discovery channels published by this site The same manifest URL is announced via FIVE channels for redundancy: 1. in 2. in 3. JSON-LD Service schema with potentialAction.additionalType=AAMManifest 4. HTTP response header: Link: <.../.well-known/agent-actions.json>; rel="agent-actions" 5. /.well-known/agent-actions.json on the canonical path Pick whichever channel survives your HTML extraction pipeline. ## License Spec is MIT. Reference implementation: github.com/aam-spec