Developer docs

Anchor Browser integration

Anchor Browser is a developer platform that enables AI agents to interact with…

Updated June 2026 64 actions available

Provider
anchor_browser
Category
Other
Setup
User-supplied API key
Actions
64 available

Quick start

Call Anchor Browser from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Anchor Browser's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "ANCHOR_BROWSER_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Anchor Browser API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

64 actions exposed via the Anchor Browser integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 64 actions
  • ANCHOR_BROWSER_DOUBLE_CLICK_MOUSE
  • ANCHOR_BROWSER_DRAG_AND_DROP
  • ANCHOR_BROWSER_END_ALL_SESSIONS
  • ANCHOR_BROWSER_END_BROWSER_SESSION
  • ANCHOR_BROWSER_GET_BATCH_SESSION_STATUS
  • ANCHOR_BROWSER_GET_BROWSER_SESSION
  • ANCHOR_BROWSER_GET_CLIPBOARD_CONTENT
  • ANCHOR_BROWSER_GET_LATEST_TASK_VERSION
  • ANCHOR_BROWSER_GET_PROFILE2
  • ANCHOR_BROWSER_GET_SESSION_PAGES
  • ANCHOR_BROWSER_GET_TASK_DRAFT
  • ANCHOR_BROWSER_GET_TASK_EXECUTION_RESULT
  • ANCHOR_BROWSER_GET_TASK_METADATA
  • ANCHOR_BROWSER_GET_TASK_VERSION
  • ANCHOR_BROWSER_GET_WEBPAGE_CONTENT
  • ANCHOR_BROWSER_LIST_AGENT_RESOURCES
  • ANCHOR_BROWSER_LIST_EXTENSIONS
  • ANCHOR_BROWSER_LIST_INTEGRATIONS
  • ANCHOR_BROWSER_LIST_PROFILES
  • ANCHOR_BROWSER_LIST_SESSION_DOWNLOADS
  • ANCHOR_BROWSER_LIST_SESSION_RECORDINGS
  • ANCHOR_BROWSER_LIST_SESSIONS
  • ANCHOR_BROWSER_LIST_TASK_EXECUTIONS
  • ANCHOR_BROWSER_LIST_TASKS
  • ANCHOR_BROWSER_LIST_TASK_VERSIONS
  • ANCHOR_BROWSER_MOVE_MOUSE
  • ANCHOR_BROWSER_NAVIGATE_TO_URL
  • ANCHOR_BROWSER_PASTE_TEXT
  • ANCHOR_BROWSER_PAUSE_AGENT
  • ANCHOR_BROWSER_PAUSE_SESSION_RECORDING
  • ANCHOR_BROWSER_PERFORM_KEYBOARD_SHORTCUT
  • ANCHOR_BROWSER_PERFORM_WEB_TASK
  • ANCHOR_BROWSER_PRESS_MOUSE_BUTTON
  • ANCHOR_BROWSER_PUBLISH_TASK_VERSION
  • ANCHOR_BROWSER_RELEASE_MOUSE_BUTTON
  • ANCHOR_BROWSER_RESUME_AGENT
  • ANCHOR_BROWSER_RESUME_SESSION_RECORDING
  • ANCHOR_BROWSER_RUN_TASK
  • ANCHOR_BROWSER_RUN_TASK_BY_NAME
  • ANCHOR_BROWSER_SCREENSHOT_WEBPAGE
  • ANCHOR_BROWSER_SCROLL_SESSION
  • ANCHOR_BROWSER_SET_CLIPBOARD_CONTENT
  • ANCHOR_BROWSER_SIGNAL_EVENT
  • ANCHOR_BROWSER_START_BROWSER_SESSION
  • ANCHOR_BROWSER_TAKE_SCREENSHOT
  • ANCHOR_BROWSER_TYPE_TEXT
  • ANCHOR_BROWSER_UPDATE_PROFILE
  • ANCHOR_BROWSER_UPDATE_TASK_METADATA
  • ANCHOR_BROWSER_UPLOAD_EXTENSION
  • ANCHOR_BROWSER_UPLOAD_FILE
  • ANCHOR_BROWSER_UPLOAD_FILES_TO_SESSION
  • ANCHOR_BROWSER_WAIT_FOR_EVENT

Build with Anchor Browser

Open OverSkill, describe what you want to build, and reference Anchor Browser in your prompt — the AI will wire up the integration automatically.