AgentWeb agent quickstart
- Discover AgentWeb with /llms.txt, A2A Agent Card, OpenAPI, and MCP tools.
- If the user has no
aw_ key, MCP agents call agentweb_start_api_key_signup, ask the human for the emailed code, then call agentweb_complete_api_key_signup. A2A agents call tasks/create with task_type=start_api_key_signup, then task_type=complete_api_key_signup. Raw HTTP clients can use POST https://mcp.agentweb.us/api/register and POST https://mcp.agentweb.us/api/verify.
- Before partner execution, call
agentweb_auth_status or agentweb_connection_status. If Hermes is not connected, call agentweb_start_connection, have the human complete the login view, then poll with agentweb_poll_connection.
- Run
POST /api/readiness/scan with a company URL.
- When a user asks to install AgentWeb for a repo or business, read Install AgentWeb and call
agentweb_install_agentweb.
- Read action catalog for allowed actions, disallowed actions, required fields, auth, payment, and verification rules.
- Use
agentweb_price_setup to understand package, usage meters, and payment-authority requirements.
- Create checkout only after the customer approves scoped payment authority.
- 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