Skip to main content
Open on GitHub

Anchorbrowser

Anchor is the platform for AI Agentic browser automation, which solves the challenge of automating workflows for web applications that lack APIs or have limited API coverage. It simplifies the creation, deployment, and management of browser-based automations, transforming complex web interactions into simple API endpoints.

On LangChain Anchor provides 3 main tools:

  • AnchorContentTool - For web content extractions in Markdown or HTML format.
  • AnchorScreenshotTool - For web page screenshot.
  • AnchorWebTaskTools - To perform web tasks.

Quickstart

Installation

Install the langchain-anchorbrowser package:

pip install langchain-anchorbrowser

Usage

Import and utilize your intended tool. The full list of Anchorbrowser available tools see Tool Features table in Anchorbrowser tool page

from langchain_anchorbrowser import AnchorContentTool

# Get Markdown Content for https://www.anchorbrowser.io
AnchorContentTool().invoke(
{"url": "https://www.anchorbrowser.io", "format": "markdown"}
)

Additional Resources