# Anchor Browser

Anchor Browser is a developer platform that enables AI agents to interact with the web through browser automation, transforming complex web interactions into simple API endpoints.

- **Category:** ai agents
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 64
- **Triggers:** 0
- **Slug:** `ANCHOR_BROWSER`
- **Version:** 20260312_00

## Tools

### Click Mouse

**Slug:** `ANCHOR_BROWSER_CLICK_MOUSE`

Tool to perform a mouse click at specified coordinates within a browser session. Use when you need to interact with page elements by clicking at specific x/y positions. The click is executed in the context of the specified browser session.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `x` | integer | Yes | The x-coordinate (horizontal position) on the page where the mouse click should occur |
| `y` | integer | Yes | The y-coordinate (vertical position) on the page where the mouse click should occur |
| `button` | string | No | The mouse button to click. Valid values are 'left', 'right', or 'middle'. Defaults to 'left' if not specified |
| `session_id` | string | Yes | The ID of the browser session where the click should be performed |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Copy Selected Text

**Slug:** `ANCHOR_BROWSER_COPY_SELECTED_TEXT`

Tool to copy currently selected text in a browser session to the clipboard. Use when you need to extract text that the user or automation has selected in the browser.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | Unique identifier for the browser session from which to copy selected text. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Integration

**Slug:** `ANCHOR_BROWSER_CREATE_INTEGRATION`

Tool to create a new integration with a third-party service like 1Password. Use when you need to set up an integration for managing credentials or accessing external services. The integration will be available immediately after creation for use in browser sessions and profiles.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name for the integration. Must be at least 1 character long. |
| `type` | string ("1PASSWORD") | Yes | The type of integration to create. Currently only '1PASSWORD' is supported. |
| `credentials` | object | Yes | Credentials required to authenticate with the third-party service. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create or Update Task Draft

**Slug:** `ANCHOR_BROWSER_CREATE_OR_UPDATE_TASK_DRAFT`

Tool to create or update the draft version of a task. Draft versions are used for development and testing before publishing. Use when you need to save task code changes without creating a published version.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | Yes | The code content for the draft version. Must be base64 encoded. |
| `task_id` | string | Yes | The unique identifier of the task to create or update the draft for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Profile

**Slug:** `ANCHOR_BROWSER_CREATE_PROFILE`

Creates a new browser profile from an active session. A profile stores cookies, local storage, and cache data. The session must be running when this is called; profile data is persisted once the session terminates. Use profiles to maintain persistent browser state across multiple sessions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Unique identifier name for the profile. Must not conflict with existing profile names. |
| `source` | string | No | The source of the profile data. Currently only 'session' is supported. |
| `session_id` | string | Yes | The ID of an active browser session to create the profile from. The session must be running; profile data (cookies, local storage, cache) will be persisted when the session terminates. |
| `description` | string | No | Optional description providing context about the profile's purpose. |
| `dedicated_sticky_ip` | boolean | No | When true, reserves a dedicated sticky IP for this profile. Any browser session started with this profile will automatically use this reserved IP address. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Task

**Slug:** `ANCHOR_BROWSER_CREATE_TASK`

Tool to create a new task or update an existing task with the same name. Tasks are reusable TypeScript code snippets that execute in browser sessions. Use when you need to define repeatable automation workflows that can be invoked across multiple sessions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | No | Base64 encoded task implementation code. The code will be executed in the browser session context. |
| `name` | string | Yes | Task identifier. Must contain only letters, numbers, hyphens, and underscores (1-255 characters). |
| `language` | string ("typescript") | Yes | Programming language for the task. Currently only 'typescript' is supported. |
| `description` | string | No | Human-readable description of what the task does. Maximum 1000 characters. |
| `browserConfiguration` | object | No | Complete browser configuration for task execution. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Extension

**Slug:** `ANCHOR_BROWSER_DELETE_EXTENSION`

Tool to delete a browser extension and remove it from storage. Use after confirming the extension exists.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier (UUID) of the extension to delete. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Integration

**Slug:** `ANCHOR_BROWSER_DELETE_INTEGRATION`

Tool to delete an existing integration and remove its stored credentials. Use after confirming the integration ID exists.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `integration_id` | string | Yes | The ID of the integration to delete. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Profile

**Slug:** `ANCHOR_BROWSER_DELETE_PROFILE`

Tool to delete a browser profile by ID. Use after confirming the profile exists.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The unique name (ID) of the browser profile to delete. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Task

**Slug:** `ANCHOR_BROWSER_DELETE_TASK`

Tool to soft delete a task and all its versions. Use after confirming the task exists.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `task_id` | string | Yes | The unique identifier (UUID) of the task to delete. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Task Version

**Slug:** `ANCHOR_BROWSER_DELETE_TASK_VERSION`

Tool to soft delete a specific version of a task. The version will no longer be accessible but data is preserved for recovery. Use when you need to remove a specific task version.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `task_id` | string | Yes | The unique identifier (UUID) of the task containing the version to delete. |
| `version` | string | Yes | The version number to delete. Can be a numeric version or 'latest'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Deploy Task

**Slug:** `ANCHOR_BROWSER_DEPLOY_TASK`

Tool to deploy a task by creating a new version with auto-incremented version number. Use when you need to publish task changes and make them available for execution.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | Yes | Base64 encoded task code. The code will be deployed as a new version. |
| `taskId` | string | Yes | The ID of the task to deploy (UUID format). |
| `language` | string | No | Programming language for the task code. Must be 'typescript'. |
| `description` | string | No | Optional version description (max 1000 characters). Helps document changes in this deployment. |
| `browserConfiguration` | object | No | Browser settings for task execution including proxy, timeout, viewport, and feature toggles. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Double Click Mouse

**Slug:** `ANCHOR_BROWSER_DOUBLE_CLICK_MOUSE`

Tool to perform a double click at specified coordinates in a browser session. Use when you need to trigger double-click events on UI elements or specific page locations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `x` | integer | No | X coordinate for the double click position in pixels |
| `y` | integer | No | Y coordinate for the double click position in pixels |
| `sessionId` | string | Yes | The ID of the browser session where the double click should be performed |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Drag and Drop

**Slug:** `ANCHOR_BROWSER_DRAG_AND_DROP`

Tool to perform a drag and drop operation from start coordinates to end coordinates within a browser session. Use when you need to simulate dragging UI elements or files in automated workflows.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `endX` | number | Yes | End X coordinate in pixels where the element will be dropped. |
| `endY` | number | Yes | End Y coordinate in pixels where the element will be dropped. |
| `startX` | number | Yes | Start X coordinate in pixels for the drag operation. |
| `startY` | number | Yes | Start Y coordinate in pixels for the drag operation. |
| `sessionId` | string | Yes | The ID of the browser session where the drag and drop operation will be performed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### End All Sessions

**Slug:** `ANCHOR_BROWSER_END_ALL_SESSIONS`

Tool to terminate all active browser sessions at once. Use when you need to immediately close every browser session for the authenticated user, such as during cleanup operations or security concerns.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### End Browser Session

**Slug:** `ANCHOR_BROWSER_END_BROWSER_SESSION`

Tool to end a specific browser session by ID. Use after confirming the session ID you want to terminate.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | Unique identifier for the browser session to end. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Batch Session Status

**Slug:** `ANCHOR_BROWSER_GET_BATCH_SESSION_STATUS`

Tool to retrieve detailed status information for a specific batch including progress and errors. Use when you need to check the status of a batch session creation request.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `batch_id` | string | Yes | The unique identifier of the batch |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Browser Session

**Slug:** `ANCHOR_BROWSER_GET_BROWSER_SESSION`

Tool to retrieve detailed information about a specific browser session. Use when you need to check the status, configuration, or execution details of a browser session.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The unique identifier of the session to retrieve. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Clipboard Content

**Slug:** `ANCHOR_BROWSER_GET_CLIPBOARD_CONTENT`

Tool to retrieve the current content of the clipboard from a browser session. Use when you need to read clipboard data from an active session.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The ID of the browser session to retrieve clipboard content from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Latest Task Version

**Slug:** `ANCHOR_BROWSER_GET_LATEST_TASK_VERSION`

Tool to retrieve the latest version of a task including the full base64 encoded code content. Use when you need to access the most recent task implementation.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `taskId` | string | Yes | The unique identifier (UUID) of the task to retrieve the latest version for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Profile (v2)

**Slug:** `ANCHOR_BROWSER_GET_PROFILE2`

Tool to retrieve details of a specific profile by its name. Use when you need to fetch information about a particular browser profile.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The name of the profile to retrieve. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Session Pages

**Slug:** `ANCHOR_BROWSER_GET_SESSION_PAGES`

Tool to retrieve all pages associated with a specific browser session. Use when you need to list all open tabs or pages in an active or completed session.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The ID of the session to retrieve pages for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Task Draft

**Slug:** `ANCHOR_BROWSER_GET_TASK_DRAFT`

Tool to retrieve the draft version of a task, including the full Base64 encoded code content. Use when you need to access the current draft of a task that hasn't been published yet.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `task_id` | string | Yes | The unique identifier of the task to retrieve the draft version for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Task Execution Result

**Slug:** `ANCHOR_BROWSER_GET_TASK_EXECUTION_RESULT`

Tool to retrieve a single task execution result by its ID. Use when you need to check the status, output, or error details of a specific task execution.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `task_id` | string | Yes | The unique identifier of the task (UUID format) |
| `execution_id` | string | Yes | The unique identifier of the execution result (UUID format) |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Task Metadata

**Slug:** `ANCHOR_BROWSER_GET_TASK_METADATA`

Tool to retrieve task metadata without downloading the full task code. Use when you need task information such as status, creation time, or language without the code content.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `task_id` | string | Yes | The unique identifier of the task to retrieve metadata for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Task Version

**Slug:** `ANCHOR_BROWSER_GET_TASK_VERSION`

Tool to retrieve a specific version of a task, including the full code content. Use when you need to access the complete task code for a particular version (draft, latest, or specific version number).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `task_id` | string | Yes | The unique identifier of the task (UUID format). |
| `version` | string | Yes | The version identifier to retrieve. Use 'draft' for the draft version, 'latest' for the most recent deployed version, or a specific version number. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Webpage Content

**Slug:** `ANCHOR_BROWSER_GET_WEBPAGE_CONTENT`

Tool to retrieve rendered content of a webpage in HTML or Markdown format. Use when you need to fetch a page’s full content, optionally within an existing browser session.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | No | The URL of the webpage to fetch content from. If omitted when using a session, fetches the current page in that session. |
| `wait` | integer | No | Milliseconds to wait for dynamic content to load before extracting the page content. |
| `format` | string ("html" | "markdown") | No | Output format for the returned content: 'html' for raw HTML or 'markdown' for formatted text. |
| `new_page` | boolean | No | Whether to create a new page/tab in the browser session for this request. |
| `sessionId` | string | No | Browser session identifier to execute within an existing session context. If not provided, a new temporary session is created for this request. |
| `page_index` | integer | No | Index of the browser page/tab to fetch content from. Supersedes 'new_page' if provided. |
| `return_partial_on_timeout` | boolean | No | If True, return partial content if the page loading exceeds the 20-second timeout instead of failing. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Agent Resources

**Slug:** `ANCHOR_BROWSER_LIST_AGENT_RESOURCES`

List all agent resources (files) uploaded to a browser session. Returns metadata for each file including name, size, file type, and last modified timestamp. Requires an active running session - use START_BROWSER_SESSION first. Files can be uploaded using UPLOAD_FILE action.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The unique identifier (UUID) of an active browser session. Obtain this from the START_BROWSER_SESSION action response. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Extensions

**Slug:** `ANCHOR_BROWSER_LIST_EXTENSIONS`

Retrieves all browser extensions uploaded by the authenticated user. Use this to view available extensions that can be attached to browser sessions for automation tasks.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Integrations

**Slug:** `ANCHOR_BROWSER_LIST_INTEGRATIONS`

Tool to retrieve all integrations for the authenticated team. Use when you need to view available integrations that can be used with browser sessions.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Profiles

**Slug:** `ANCHOR_BROWSER_LIST_PROFILES`

Tool to fetch all stored browser profiles. Use when you need an overview of all profiles available to the authenticated user (e.g., after creating or deleting profiles).

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Session Downloads

**Slug:** `ANCHOR_BROWSER_LIST_SESSION_DOWNLOADS`

Tool to retrieve metadata of files downloaded during a browser session. Use after confirming the session ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The unique identifier of the browser session to retrieve downloads for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Session Recordings

**Slug:** `ANCHOR_BROWSER_LIST_SESSION_RECORDINGS`

Tool to list all recordings for a specific browser session. Use after confirming the session ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The unique identifier (UUID) of the browser session to retrieve recordings for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Sessions

**Slug:** `ANCHOR_BROWSER_LIST_SESSIONS`

Tool to list all browser sessions. Use when you need to retrieve both active and inactive sessions.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Task Executions

**Slug:** `ANCHOR_BROWSER_LIST_TASK_EXECUTIONS`

Tool to retrieve execution history for a specific task with filtering and pagination support. Use when you need to view past execution results, monitor task success rates, or debug failed executions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | string | No | Page number for pagination. Must be a positive integer. Default is '1'. |
| `limit` | string | No | Number of executions to return per page. Must be a positive integer between 1 and 100. Default is '10'. |
| `status` | string ("success" | "failure" | "timeout" | "cancelled" | "queued" | "running") | No | Execution status values for filtering task executions. |
| `taskId` | string | Yes | The unique identifier of the task to retrieve executions for (UUID format). |
| `version` | string | No | Filter executions by task version. Can be 'draft', 'latest', or a specific version number. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Tasks

**Slug:** `ANCHOR_BROWSER_LIST_TASKS`

Tool to retrieve a paginated list of all tasks for the authenticated team. Use when you need to view available tasks with their latest version information and metadata.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | string | No | Page number for pagination. Must be a positive integer. Default is '1'. |
| `limit` | string | No | Number of tasks to return per page. Must be a positive integer between 1 and 100. Default is '10'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Task Versions

**Slug:** `ANCHOR_BROWSER_LIST_TASK_VERSIONS`

Tool to retrieve all versions of a specific task, including draft and published versions. Use when you need to view the version history of a task or select a specific version for deployment or execution.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `task_id` | string | Yes | The unique identifier (UUID) of the task to retrieve versions for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Mouse Move

**Slug:** `ANCHOR_BROWSER_MOVE_MOUSE`

Tool to move the mouse cursor to specified coordinates within a browser session. Use when you need to simulate mouse movement at the OS level.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `x` | integer | Yes | X coordinate to move the mouse cursor to. |
| `y` | integer | Yes | Y coordinate to move the mouse cursor to. |
| `session_id` | string | Yes | The ID of the browser session where the mouse should be moved. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Navigate to URL

**Slug:** `ANCHOR_BROWSER_NAVIGATE_TO_URL`

Tool to navigate a browser session to a specified URL. Use when you need to direct an existing session to a new webpage.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | Yes | The URL to navigate to. Must be a valid HTTP or HTTPS URL. |
| `session_id` | string | Yes | The ID of the browser session to navigate. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Paste Text

**Slug:** `ANCHOR_BROWSER_PASTE_TEXT`

Tool to paste text at the current cursor position in a browser session. Use when you need to insert text into an active form field or text area.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `text` | string | Yes | Text to paste at the current cursor position in the browser session. |
| `session_id` | string | Yes | The ID of the browser session where text should be pasted. Must be a valid active session ID returned from starting a browser session. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Pause Agent

**Slug:** `ANCHOR_BROWSER_PAUSE_AGENT`

Tool to pause the AI agent for a specific browser session. Use when you need to temporarily halt autonomous agent execution while keeping the session active.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The ID of the browser session for which to pause the AI agent. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Pause Session Recording

**Slug:** `ANCHOR_BROWSER_PAUSE_SESSION_RECORDING`

Tool to pause the video recording for a specific browser session. Use when you need to temporarily stop recording without ending the session.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The unique identifier of the browser session for which to pause recording. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Perform Keyboard Shortcut

**Slug:** `ANCHOR_BROWSER_PERFORM_KEYBOARD_SHORTCUT`

Tool to perform a keyboard shortcut using specified keys in a browser session. Use when you need to simulate keyboard input like copy (Control+C), paste (Control+V), or any other key combination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `keys` | array | Yes | Array of keys to press simultaneously. Examples: ['Control', 'c'] for copy, ['Control', 'v'] for paste, ['Alt', 'Tab'] for window switch. |
| `hold_time` | integer | No | Time to hold the keys down in milliseconds. If not specified, uses default key press duration. |
| `session_id` | string | Yes | Unique identifier for the browser session where the keyboard shortcut will be performed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Perform Web Task

**Slug:** `ANCHOR_BROWSER_PERFORM_WEB_TASK`

Tool to perform autonomous web tasks using AI agents. Use when you need to automate complex browser interactions like form filling, data extraction, or multi-step workflows.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | No | The URL of the webpage where the task should be performed. If omitted when using a session, uses the current page in that session. |
| `agent` | string ("browser-use" | "openai-cua" | "gemini-computer-use" | "anthropic-cua") | No | The AI agent type to use for task completion. Each agent has different capabilities and performance characteristics. |
| `async` | boolean | No | Run the task asynchronously and return immediately with a workflow ID. When false (default), waits for task completion before returning. |
| `model` | string | No | Specific model identifier to use for task completion. Model availability depends on the selected provider. |
| `prompt` | string | Yes | The task description that the AI agent should complete autonomously on the webpage. Be specific about the desired outcome. |
| `provider` | string ("openai" | "gemini" | "groq" | "azure" | "xai") | No | The AI provider to use for task execution. If omitted, uses the default provider for the selected agent. |
| `max_steps` | integer | No | Maximum number of steps the agent can take to complete the task. Defaults to 200. Higher values allow for more complex multi-step workflows. |
| `sessionId` | string | No | Browser session identifier to execute the task within an existing session context. If not provided, a new temporary session is created. |
| `output_schema` | object | No | JSON Schema defining the expected structure of the task output. The agent will format its response according to this schema. |
| `secret_values` | object | No | Secure credential handling via environment variables. Keys are variable names, values are sensitive data that should not be logged. |
| `detect_elements` | boolean | No | Enable element detection to improve interaction accuracy with UI elements. Useful for complex forms and dynamic interfaces. |
| `highlight_elements` | boolean | No | Visually highlight UI elements during task execution. Useful for debugging and understanding agent behavior. |
| `human_intervention` | boolean | No | Allow human input during task execution. When enabled, the agent can request user assistance for ambiguous situations. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Mouse Down

**Slug:** `ANCHOR_BROWSER_PRESS_MOUSE_BUTTON`

Tool to perform a mouse button down action at specified coordinates within a browser session. Use when you need to simulate pressing and holding a mouse button at a specific screen position.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `x` | integer | Yes | The x-coordinate (horizontal position) in pixels where the mouse button should be pressed down. |
| `y` | integer | Yes | The y-coordinate (vertical position) in pixels where the mouse button should be pressed down. |
| `button` | string ("left" | "right" | "middle") | No | The mouse button to press down. Defaults to 'left' if not specified. |
| `session_id` | string | Yes | The ID of the browser session in which to perform the mouse down action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Publish Task Version

**Slug:** `ANCHOR_BROWSER_PUBLISH_TASK_VERSION`

Tool to publish a specific version of a task. Creates a new version if it doesn't exist, or updates an existing version's metadata. Use when you need to make a specific task version available for execution. Cannot publish to 'draft' versions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | Yes | Base64-encoded task code to publish. The code will be executed in the browser session context. |
| `taskId` | string | Yes | The ID of the task (UUID format). |
| `language` | string ("javascript" | "typescript") | Yes | Programming language of the task code. Supported values: 'javascript' or 'typescript'. |
| `description` | string | No | Optional task version description (maximum 1000 characters). Helps document what changed in this version. |
| `taskVersion` | string | Yes | The version number to publish. Must be a numeric string (e.g., '1', '2'). Cannot be 'draft'. |
| `browserConfiguration` | object | No | Optional browser configuration including initial URL, tags, recording settings, proxy, timeout, and live view options. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Release Mouse Button

**Slug:** `ANCHOR_BROWSER_RELEASE_MOUSE_BUTTON`

Tool to release a mouse button at specified coordinates within a browser session. Use when automating mouse interactions that require button release events, such as completing drag operations or simulating natural mouse behavior.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `x` | integer | Yes | X-coordinate (horizontal position in pixels) where the mouse button up action should occur. |
| `y` | integer | Yes | Y-coordinate (vertical position in pixels) where the mouse button up action should occur. |
| `button` | string ("left" | "middle" | "right") | No | Enumeration of mouse button types. |
| `session_id` | string | Yes | Unique identifier for the browser session where the mouse up action will be performed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Resume Agent

**Slug:** `ANCHOR_BROWSER_RESUME_AGENT`

Tool to resume the AI agent for a specific browser session. Use when you need to restart agent execution after it has been paused or stopped.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | Unique identifier for the browser session where the agent should be resumed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Resume Session Recording

**Slug:** `ANCHOR_BROWSER_RESUME_SESSION_RECORDING`

Tool to resume video recording for a specific browser session. Use when recording was previously paused and needs to be restarted.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The unique identifier (UUID) of the browser session to resume recording for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Run Task

**Slug:** `ANCHOR_BROWSER_RUN_TASK`

Tool to execute a task in a browser session with a specific or latest version. Use when you need to run an existing task with optional session reuse and configuration overrides.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `async` | boolean | No | Whether to run the task asynchronously. If true, returns immediately with task status; if false (default), waits for task completion |
| `inputs` | object | No | Environment variables for task execution. All keys must start with 'ANCHOR_' prefix |
| `taskId` | string | Yes | Task identifier (UUID format) |
| `version` | string | No | Version to run: 'draft' for the current draft version, 'latest' for the latest published version, or a specific version number |
| `sessionId` | string | No | Optional existing browser session ID to use for task execution. If not provided, a new session will be created |
| `cleanupSessions` | boolean | No | Whether to cleanup browser sessions after task execution. Defaults to true if not specified |
| `overrideBrowserConfiguration` | object | No | Session-related configurations to override default browser settings. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Run Task by Name

**Slug:** `ANCHOR_BROWSER_RUN_TASK_BY_NAME`

Tool to execute a task by its name, always using the latest version. Use when you need to run a predefined browser automation task by referencing its name.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `inputs` | object | No | Environment variables for task execution. All keys must start with 'ANCHOR_' prefix |
| `taskName` | string | Yes | The name of the task to execute. This will use the latest version of the task |
| `sessionId` | string | No | Optional existing session ID to use for task execution |
| `taskSessionId` | string | No | Optional task-specific session ID for tracking |
| `overrideBrowserConfiguration` | object | No | Browser configuration override for task execution. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Screenshot Webpage

**Slug:** `ANCHOR_BROWSER_SCREENSHOT_WEBPAGE`

Tool to take a screenshot of a specified webpage within a session. Use when you need a visual PNG snapshot of a live page. Example: "Capture a 1280×720 screenshot of https://example.com".

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | Yes | The fully qualified URL of the webpage to capture. Must include the protocol (https:// or http://). |
| `wait` | integer | No | Time in milliseconds to wait after page load before capturing. Useful for pages with JavaScript animations or delayed content loading. Defaults to 0. |
| `width` | integer | No | Browser viewport width in pixels. Determines the width of the rendered page before capture. Defaults to 1280. |
| `height` | integer | No | Browser viewport height in pixels. Determines the visible area height (unless capture_full_height is true). Defaults to 720. |
| `sessionId` | string | No | Existing browser session ID to use for the screenshot. If provided, the screenshot is taken within that session's browser context. If omitted, a new temporary session is created. |
| `image_quality` | integer | No | Output image quality as a percentage (1-100). Higher values produce larger, sharper images. 100 means no compression. Defaults to 80. |
| `s3_target_address` | string | No | Pre-signed S3 URL where the screenshot should be uploaded directly. If provided, the image is uploaded to S3 instead of being returned in the response. Useful for large screenshots or when storing for later use. |
| `scroll_all_content` | boolean | No | If true, scrolls through the entire page before capture to trigger lazy-loaded images and dynamic content. Set to true for pages with infinite scroll or lazy loading. |
| `capture_full_height` | boolean | No | If true, captures the entire document height (full page) instead of just the visible viewport. Useful for capturing long scrolling pages. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Scroll Session

**Slug:** `ANCHOR_BROWSER_SCROLL_SESSION`

Tool to perform a scroll action at specified coordinates within a browser session. Use when you need to scroll to specific positions or simulate user scrolling behavior. Example: "Scroll down 100 pixels from position (100, 100) in session sess_123".

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `x` | integer | Yes | The horizontal coordinate (in pixels) where the scroll action starts. |
| `y` | integer | Yes | The vertical coordinate (in pixels) where the scroll action starts. |
| `steps` | integer | No | Number of intermediate steps to divide the scroll into. Higher values create smoother scrolling animations. |
| `useOs` | boolean | No | If true, uses OS-level scroll events instead of browser-level scroll. Useful for simulating more realistic human scrolling behavior. |
| `deltaX` | integer | No | The horizontal scroll distance in pixels. Positive values scroll right, negative values scroll left. |
| `deltaY` | integer | Yes | The vertical scroll distance in pixels. Positive values scroll down, negative values scroll up. |
| `sessionId` | string | Yes | The ID of the browser session where the scroll action will be performed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Set Clipboard Content

**Slug:** `ANCHOR_BROWSER_SET_CLIPBOARD_CONTENT`

Tool to set the content of the clipboard in a browser session. Use when you need to programmatically copy text to the clipboard for automated workflows.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `text` | string | Yes | Text to set in the clipboard. |
| `session_id` | string | Yes | The ID of the browser session. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Signal Event

**Slug:** `ANCHOR_BROWSER_SIGNAL_EVENT`

Tool to signal a specific event to be received by other processes or sessions. Use when you need real-time coordination across browser sessions after verifying session is active.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | object | Yes | The JSON payload to send with the event. |
| `event_name` | string | Yes | The name of the event to signal. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Start Browser Session

**Slug:** `ANCHOR_BROWSER_START_BROWSER_SESSION`

Tool to start a new browser session with optional customizations. Use when you need to programmatically allocate an isolated browser instance with recording, proxy, live view, and feature toggles.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `browser` | object | No | Browser-level configurations including profile, viewport, and feature toggles (adblock, captcha solver, etc.) |
| `session` | object | No | Session-level configurations including recording, proxy, timeouts, and live view settings |
| `identities` | array | No | Previously configured identities for authenticated sessions (Beta feature) |
| `integrations` | array | No | Array of integrations to load in the browser session (e.g., 1Password). Integrations must be previously created using the Integrations API |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Take Screenshot

**Slug:** `ANCHOR_BROWSER_TAKE_SCREENSHOT`

Tool to take a screenshot of the current browser session and return it as an image. Use when you need a visual snapshot of an active browser session.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `session_id` | string | Yes | The ID of the browser session to capture a screenshot from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Type Text

**Slug:** `ANCHOR_BROWSER_TYPE_TEXT`

Tool to type specified text with optional delay between keystrokes. Use when you need to input text into a browser session, such as filling forms or entering search queries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `text` | string | Yes | The text to type into the browser session. |
| `delay` | integer | No | Delay between keystrokes in milliseconds. If not specified, types at normal speed. |
| `session_id` | string | Yes | The ID of the browser session where text should be typed. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Profile

**Slug:** `ANCHOR_BROWSER_UPDATE_PROFILE`

Updates an existing browser profile with data from an active session. The profile stores cookies, local storage, and cache from the session. Requires an active (running) browser session - the session_id must reference a session that has not been terminated.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The unique name (ID) of the browser profile to update. Must be an existing profile. |
| `source` | string | No | The source of the profile data. Currently only 'session' is supported. |
| `session_id` | string | Yes | The UUID of an active browser session to update the profile from. The session must be currently running. |
| `description` | string | No | A new description for the profile. If not provided, the description remains unchanged. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Task Metadata

**Slug:** `ANCHOR_BROWSER_UPDATE_TASK_METADATA`

Updates task metadata (name and description). This does not affect the task code or versions. Use when you need to update task information without modifying the implementation.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | New name for the task. If not provided, the name remains unchanged. |
| `task_id` | string | Yes | The ID of the task to update. Must be an existing task. |
| `description` | string | No | New description for the task. If not provided, the description remains unchanged. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Upload Extension

**Slug:** `ANCHOR_BROWSER_UPLOAD_EXTENSION`

Tool to upload a new browser extension as a ZIP file for use in browser sessions. Use when you need to add custom extensions that can be attached to automation sessions. The ZIP file must contain a valid extension manifest (manifest.json). Extensions are scoped to the authenticated user and can be listed or attached to sessions later.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file` | object | No | ZIP file containing the browser extension. Required if file_content_base64 is not provided. |
| `name` | string | Yes | User-friendly name for the extension. Must be between 1-255 characters. |
| `file_name` | string | No | Filename for the extension ZIP when using file_content_base64 (e.g., 'extension.zip'). Required when using file_content_base64. |
| `file_content_base64` | string | No | Base64-encoded ZIP file content. If provided, this is used directly instead of fetching from S3 storage. Useful for direct file uploads or testing. Required if file is not provided. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Upload File

**Slug:** `ANCHOR_BROWSER_UPLOAD_FILE`

Tool to upload a file to a browser session as an agent resource. Use after starting or referencing a session when you need to provide file inputs (single files or ZIP archives) for web forms or AI-driven tasks. Supports direct base64-encoded content or S3 key references from other actions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file` | object | Yes | File information including name and mimetype. |
| `session_id` | string | Yes | The ID of the browser session to upload the file to. Must be a valid active session ID returned from starting a browser session. |
| `file_content_base64` | string | No | Base64-encoded file content. If provided, this is used directly instead of the file reference. Useful for direct file uploads or testing. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Upload Files to Session

**Slug:** `ANCHOR_BROWSER_UPLOAD_FILES_TO_SESSION`

Tool to upload files directly to a browser session for use with web forms and file inputs. Use when you need to provide file inputs to web forms during automated browser sessions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file` | object | Yes | File to upload to the browser session. |
| `session_id` | string | Yes | The ID of the browser session to upload the file to. Must be a valid active session ID returned from starting a browser session. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Wait for Event

**Slug:** `ANCHOR_BROWSER_WAIT_FOR_EVENT`

Blocks execution until a specific named event is signaled or the timeout expires. Used for cross-session coordination, MFA handling, and workflow synchronization. The event must first be signaled using the Signal Event action. Returns the data payload that was sent with the signal. Events are user-scoped.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `timeoutMs` | integer | No | Maximum time in milliseconds to wait for the event before timing out. Defaults to 60000ms (60 seconds). Maximum allowed is 300000ms (5 minutes). |
| `event_name` | string | Yes | The unique name of the event to wait for. Must match the event_name used by the signaling process (via Signal Event action). Event names are user-scoped and case-sensitive. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
