Skip to content

Install

Prerequisites


Node.js SDK

bash
npm install anchorbrowser

Set your API key as an environment variable:

bash
export ANCHOR_API_KEY="your_api_key_here"

Python SDK

bash
pip install anchorbrowser

Set your API key as an environment variable:

bash
export ANCHOR_API_KEY="your_api_key_here"

MCP (Model Context Protocol) server

Anchor Browser also ships a hosted MCP server. Add it to your MCP client config (e.g. Claude Desktop's claude_desktop_config.json):

json
{
  "mcpServers": {
    "anchor-browser": {
      "url": "https://mcp.anchorbrowser.io",
      "headers": {
        "x-anchor-api-key": "your_api_key_here"
      }
    }
  }
}

The open-source MCP variant is also documented at https://docs.anchorbrowser.io under the MCP section.


No local binary required

Anchor Browser is a cloud service. Nothing runs on your machine except the thin SDK client. The actual Chromium instance runs on Anchor's infrastructure and streams back results over the API.