One script tag. Any AI agent can now discover, authenticate, and operate your website programmatically. No custom API needed.
<!-- Add this before </body> — that's it -->
<script src="https://cdn.jsdelivr.net/npm/agentdom@3/agentdom.js"></script>
<!-- Your site is now agent-ready. AI agents can: -->
<!-- ✓ Discover all forms, buttons, and links -->
<!-- ✓ Auto-generate tools like login(email, pwd) -->
<!-- ✓ Interact with human-like actions -->AgentDOM scans your page and creates a machine-readable schema. Agents use this to generate page-specific tools.
One line in your HTML. AgentDOM runs in the background and exposes AgentDOM.scan() on your page.
The agent calls synthesizeTools() and gets auto-generated tools like login(email, password).
It fills forms, clicks buttons, and authenticates — with human-like mouse movements and keystrokes.
Any form or action on your page becomes a callable function for AI agents. Zero configuration.
<form data-agentdom-intent="authenticate">
<input name="email" type="email"
aria-label="Email address">
<input name="password" type="password"
aria-label="Password">
<button type="submit">Log In</button>
</form>login(
email: "user@company.com",
password: "agent-token-xyz"
)
// AgentDOM fills form + clicks submit
// Agent gets authenticated sessionBuilt for the agent era. Every feature designed to make AI-website interaction reliable and fast.
Forms become functions. Buttons become actions. Links become navigation. All auto-generated from your HTML.
Support form-based auth, OAuth2, API keys, and the new Agent Token standard for secure sessions.
Bezier mouse curves, realistic keystroke timing, hover events. Bypasses bot detection naturally.
Built-in Model Context Protocol server. Works with Claude, Cursor, and any MCP-compatible client.
Native function-calling adapters for OpenAI, Google Gemini, and any agent framework via HTTP API.
Declare your app's capabilities in agentdom.json. Agents discover what your app can do before visiting.
Works with every major agent platform out of the box.
Works on macOS, Windows, and Linux. No binary downloads — just one command.
curl -fsSL https://getagentdom.com/install.sh | bashor npm install -g agentdom
irm https://getagentdom.com/install.ps1 | iexor npm install -g agentdom
<script src="https://cdn.jsdelivr.net/npm/agentdom@3/agentdom.js"></script>No install needed
Add one line to your site. Every AI agent can now use it.