AgentWeb Developers
AgentWeb exposes supported web actions through a Streamable HTTP MCP server and documented HTTP interfaces. Integrations should inspect the live tool manifest and OpenAPI document rather than assume a fixed catalog.
Runtime
- MCP endpoint: https://mcp.agentweb.us/mcp
- OpenAPI: /openapi.json
- MCP tool manifest: /.well-known/mcp/tools.json
- Quickstart: /docs/quickstart
- MCP tool guide: /docs/mcp-apps
- Agent auth and connections: /docs/agent-auth
- Agent platform configs: /agent-platforms/
Auth
Use Authorization: Bearer aw_<key> for production keys. First-time setup uses one-link polling in every client; OAuth metadata remains available on the MCP origin for existing compatible tokens.
Agent-Native Registration
- Start with
agentweb_start_claim_link_signup. Send the human only the returnedverification_uri_complete. - While the human signs in once, poll
agentweb_poll_claim_link_signupwithdeviceCode. The poll result returns the key,welcome_message, and setup command. Raw HTTP fallback:POST https://mcp.agentweb.us/agent/identitythenPOST https://mcp.agentweb.us/oauth2/token. - Email-only agent signup is not supported. The customer must sign in once to prove consent and email ownership.
- Email-code signup remains available through
agentweb_start_api_key_signup,agentweb_complete_api_key_signup,/api/register, and/api/verify. - Reconnect to the MCP server with the returned API key.
Execution flow
Use read_page or discover before authentication, then authenticate, call list_actions, connect the target-site account when required, and call execute only after validating the action inputs and approval boundary.