Anchor browser MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Anchor browser MCP or direct API to automate web navigation, extract content, fill forms, and interact with dynamic sites through natural language.

Anchor browser logoAnchor browser
Api Key

Anchor browser is a developer platform for AI-powered web automation. It transforms complex browser actions into easy API endpoints for streamlined web interaction.

64 Tools

Try Anchor browser now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Anchor browser
Try asking
TOOLS

Supported Tools

Every Anchor browser action and event your agent gets out of the box.

Click Mouse

Tool to perform a mouse click at specified coordinates within a browser session.

Copy Selected Text

Tool to copy currently selected text in a browser session to the clipboard.

Create Integration

Tool to create a new integration with a third-party service like 1Password.

Create or Update Task Draft

Tool to create or update the draft version of a task.

Create Profile

Creates a new browser profile from an active session.

Create Task

Tool to create a new task or update an existing task with the same name.

Delete Extension

Tool to delete a browser extension and remove it from storage.

Delete Integration

Tool to delete an existing integration and remove its stored credentials.

Delete Profile

Tool to delete a browser profile by ID.

Delete Task

Tool to soft delete a task and all its versions.

Delete Task Version

Tool to soft delete a specific version of a task.

Deploy Task

Tool to deploy a task by creating a new version with auto-incremented version number.

Double Click Mouse

Tool to perform a double click at specified coordinates in a browser session.

Drag and Drop

Tool to perform a drag and drop operation from start coordinates to end coordinates within a browser session.

End All Sessions

Tool to terminate all active browser sessions at once.

End Browser Session

Tool to end a specific browser session by ID.

Get Batch Session Status

Tool to retrieve detailed status information for a specific batch including progress and errors.

Get Browser Session

Tool to retrieve detailed information about a specific browser session.

Get Clipboard Content

Tool to retrieve the current content of the clipboard from a browser session.

Get Latest Task Version

Tool to retrieve the latest version of a task including the full base64 encoded code content.

Get Profile (v2)

Tool to retrieve details of a specific profile by its name.

Get Session Pages

Tool to retrieve all pages associated with a specific browser session.

Get Task Draft

Tool to retrieve the draft version of a task, including the full Base64 encoded code content.

Get Task Execution Result

Tool to retrieve a single task execution result by its ID.

Get Task Metadata

Tool to retrieve task metadata without downloading the full task code.

Get Task Version

Tool to retrieve a specific version of a task, including the full code content.

Get Webpage Content

Tool to retrieve rendered content of a webpage in HTML or Markdown format.

List Agent Resources

List all agent resources (files) uploaded to a browser session.

List Extensions

Retrieves all browser extensions uploaded by the authenticated user.

List Integrations

Tool to retrieve all integrations for the authenticated team.

List Profiles

Tool to fetch all stored browser profiles.

List Session Downloads

Tool to retrieve metadata of files downloaded during a browser session.

List Session Recordings

Tool to list all recordings for a specific browser session.

List Sessions

Tool to list all browser sessions.

List Task Executions

Tool to retrieve execution history for a specific task with filtering and pagination support.

List Tasks

Tool to retrieve a paginated list of all tasks for the authenticated team.

List Task Versions

Tool to retrieve all versions of a specific task, including draft and published versions.

Mouse Move

Tool to move the mouse cursor to specified coordinates within a browser session.

Navigate to URL

Tool to navigate a browser session to a specified URL.

Paste Text

Tool to paste text at the current cursor position in a browser session.

Pause Agent

Tool to pause the AI agent for a specific browser session.

Pause Session Recording

Tool to pause the video recording for a specific browser session.

Perform Keyboard Shortcut

Tool to perform a keyboard shortcut using specified keys in a browser session.

Perform Web Task

Tool to perform autonomous web tasks using AI agents.

Mouse Down

Tool to perform a mouse button down action at specified coordinates within a browser session.

Publish Task Version

Tool to publish a specific version of a task.

Release Mouse Button

Tool to release a mouse button at specified coordinates within a browser session.

Resume Agent

Tool to resume the AI agent for a specific browser session.

Resume Session Recording

Tool to resume video recording for a specific browser session.

Run Task

Tool to execute a task in a browser session with a specific or latest version.

Run Task by Name

Tool to execute a task by its name, always using the latest version.

Screenshot Webpage

Tool to take a screenshot of a specified webpage within a session.

Scroll Session

Tool to perform a scroll action at specified coordinates within a browser session.

Set Clipboard Content

Tool to set the content of the clipboard in a browser session.

Signal Event

Tool to signal a specific event to be received by other processes or sessions.

Start Browser Session

Tool to start a new browser session with optional customizations.

Take Screenshot

Tool to take a screenshot of the current browser session and return it as an image.

Type Text

Tool to type specified text with optional delay between keystrokes.

Update Profile

Updates an existing browser profile with data from an active session.

Update Task Metadata

Updates task metadata (name and description).

Upload Extension

Tool to upload a new browser extension as a ZIP file for use in browser sessions.

Upload File

Tool to upload a file to a browser session as an agent resource.

Upload Files to Session

Tool to upload files directly to a browser session for use with web forms and file inputs.

Wait for Event

Blocks execution until a specific named event is signaled or the timeout expires.

SETUP GUIDE

Connect Anchor browser MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Get webpage content for https://example.com' }],
  stopWhen: stepCountIs(5)
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Anchor browser API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Anchor browser Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Fetch and summarize the latest tech news homepage'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Anchor browser actions with your Agent

Why Use Composio?

AI Native Anchor browser Integration

  • Supports both Anchor browser MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Anchor browser data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Anchor browser access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Anchor browser
  • Scoped, least privilege access to Anchor browser resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Anchor browser requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Anchor browser.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Anchor browser tool your agent needs.Free to start.

Start building