AgentWeb agent quickstart

  1. Discover AgentWeb with /llms.txt, A2A Agent Card, OpenAPI, and MCP tools.
  2. Run POST /api/readiness/scan with a company URL.
  3. When a user asks to install AgentWeb for a repo or business, read Install AgentWeb and call agentweb_install_agentweb.
  4. Read action catalog for allowed actions, disallowed actions, required fields, auth, payment, and verification rules.
  5. Use agentweb_price_setup to understand package, usage meters, and payment-authority requirements.
  6. Create checkout only after the customer approves scoped payment authority.
  7. Wait for Stripe webhook entitlement, then verify install and execute approved Agent Maps.

Minimal scan request

curl -X POST https://agentweb.us/api/readiness/scan \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com","agent_protocol":"mcp","discovery_surface":"llms_txt"}'

Next docs