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.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Anchor browser Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Anchor browser now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Click MouseTool to perform a mouse click at specified coordinates within a browser session.
Copy Selected TextTool to copy currently selected text in a browser session to the clipboard.
Create IntegrationTool to create a new integration with a third-party service like 1Password.
Create or Update Task DraftTool to create or update the draft version of a task.
Create ProfileCreates a new browser profile from an active session.
Create TaskTool to create a new task or update an existing task with the same name.
Delete ExtensionTool to delete a browser extension and remove it from storage.
Delete IntegrationTool to delete an existing integration and remove its stored credentials.
Delete ProfileTool to delete a browser profile by ID.
Delete TaskTool to soft delete a task and all its versions.
Delete Task VersionTool to soft delete a specific version of a task.
Deploy TaskTool to deploy a task by creating a new version with auto-incremented version number.
Double Click MouseTool to perform a double click at specified coordinates in a browser session.
Drag and DropTool to perform a drag and drop operation from start coordinates to end coordinates within a browser session.
End All SessionsTool to terminate all active browser sessions at once.
End Browser SessionTool to end a specific browser session by ID.
Get Batch Session StatusTool to retrieve detailed status information for a specific batch including progress and errors.
Get Browser SessionTool to retrieve detailed information about a specific browser session.
Get Clipboard ContentTool to retrieve the current content of the clipboard from a browser session.
Get Latest Task VersionTool 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 PagesTool to retrieve all pages associated with a specific browser session.
Get Task DraftTool to retrieve the draft version of a task, including the full Base64 encoded code content.
Get Task Execution ResultTool to retrieve a single task execution result by its ID.
Get Task MetadataTool to retrieve task metadata without downloading the full task code.
Get Task VersionTool to retrieve a specific version of a task, including the full code content.
Get Webpage ContentTool to retrieve rendered content of a webpage in HTML or Markdown format.
List Agent ResourcesList all agent resources (files) uploaded to a browser session.
List ExtensionsRetrieves all browser extensions uploaded by the authenticated user.
List IntegrationsTool to retrieve all integrations for the authenticated team.
List ProfilesTool to fetch all stored browser profiles.
List Session DownloadsTool to retrieve metadata of files downloaded during a browser session.
List Session RecordingsTool to list all recordings for a specific browser session.
List SessionsTool to list all browser sessions.
List Task ExecutionsTool to retrieve execution history for a specific task with filtering and pagination support.
List TasksTool to retrieve a paginated list of all tasks for the authenticated team.
List Task VersionsTool to retrieve all versions of a specific task, including draft and published versions.
Mouse MoveTool to move the mouse cursor to specified coordinates within a browser session.
Navigate to URLTool to navigate a browser session to a specified URL.
Paste TextTool to paste text at the current cursor position in a browser session.
Pause AgentTool to pause the AI agent for a specific browser session.
Pause Session RecordingTool to pause the video recording for a specific browser session.
Perform Keyboard ShortcutTool to perform a keyboard shortcut using specified keys in a browser session.
Perform Web TaskTool to perform autonomous web tasks using AI agents.
Mouse DownTool to perform a mouse button down action at specified coordinates within a browser session.
Publish Task VersionTool to publish a specific version of a task.
Release Mouse ButtonTool to release a mouse button at specified coordinates within a browser session.
Resume AgentTool to resume the AI agent for a specific browser session.
Resume Session RecordingTool to resume video recording for a specific browser session.
Run TaskTool to execute a task in a browser session with a specific or latest version.
Run Task by NameTool to execute a task by its name, always using the latest version.
Screenshot WebpageTool to take a screenshot of a specified webpage within a session.
Scroll SessionTool to perform a scroll action at specified coordinates within a browser session.
Set Clipboard ContentTool to set the content of the clipboard in a browser session.
Signal EventTool to signal a specific event to be received by other processes or sessions.
Start Browser SessionTool to start a new browser session with optional customizations.
Take ScreenshotTool to take a screenshot of the current browser session and return it as an image.
Type TextTool to type specified text with optional delay between keystrokes.
Update ProfileUpdates an existing browser profile with data from an active session.
Update Task MetadataUpdates task metadata (name and description).
Upload ExtensionTool to upload a new browser extension as a ZIP file for use in browser sessions.
Upload FileTool to upload a file to a browser session as an agent resource.
Upload Files to SessionTool to upload files directly to a browser session for use with web forms and file inputs.
Wait for EventBlocks execution until a specific named event is signaled or the timeout expires.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Anchor browser tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Get webpage content for https://example.com')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI 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

Frequently Asked Questions

Do I need my own developer credentials to use Anchor browser with Composio?

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.

Can I use multiple toolkits together?

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

Is Composio secure?

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

What if the API changes?

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

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.