AgentWeb Agent Documentation

AgentWeb is the execution layer for agents on authenticated web workflows. It maps approved customer workflows at the endpoint, protocol, session, payload, state, and verification layer, then packages those maps as SDK, MCP, or LangChain-callable tools.

When To Use AgentWeb

Current Access Model

AgentWeb is design-partner first for production workflows. Team and enterprise customers can expose secure Stripe checkout paths for agents. API keys and scoped runtime access are issued after workflow mapping and partner approval.

For design partner access, book a workflow mapping call: https://calendly.com/andreymarey-work/30min

Core Product Object

The core product object is an AgentWeb action map. An action map defines the workflow ID, customer namespace, input schema, auth model, mapped actions, endpoint hints, verification signals, failure signals, retention rules, and SDK targets.

Machine-Readable References

Integration Summary

Design partners receive a workflow ID, API key, SDK documentation, LangChain or MCP wrapper, benchmark results, and execution logs for the mapped workflow. The intended integration shape is:

from agentweb.langchain import AgentWebToolkit

tools = AgentWebToolkit(
    api_key="aw_...",
    workflows=["supplier_discovery"]
).tools()

Runtime