Agent Browser Protocol: Open-source Chrome fork for AI agents achieves 90% on Mind2Web benchmark

✍️ OpenClawRadar📅 Published: March 11, 2026🔗 Source
Agent Browser Protocol: Open-source Chrome fork for AI agents achieves 90% on Mind2Web benchmark
Ad

Agent Browser Protocol: A browser built for AI agents

Agent Browser Protocol (ABP) is an open-source browser fork of Chrome specifically designed for AI agents. The project was created as a challenge to build an agent-centric browser and capture the top score on the Online Mind2Web Benchmark.

Key technical approach

The main insight behind ABP is that AI agents excel at turn-based chat but struggle with continuous time decision making. To maximize LLM performance on browser tasks, ABP converts web browsing into multimodal chat by:

  • Freezing JavaScript and time after every action so the webpage is frozen while the agent thinks
  • Capturing all relevant events resulting from actions including file pickers, downloads, permission requests, and dialogs
  • Returning these events together with a screenshot of the frozen page so the agent can reason holistically about the browser state with full context

Performance and development

ABP achieved 90.53% on the Online Mind2Web Benchmark, holding the top score for two days until GPT-5.4 surpassed it with 92.8%. The developer used Claude Opus-4.5 to work on the project during nights and weekends, completing it within two months.

Ad

Practical applications

According to the source, ABP excels at:

  • Filing forms
  • Online shopping
  • Downloading files
  • Uploading files
  • Ordering takeout
  • Reverse engineering a website's undocumented APIs

Getting started

To add ABP to Claude Code:

claude mcp add browser -- npx -y agent-browser-protocol --mcp

Then you can give Claude commands like:

Find me kung pao chicken near 415 Mission St, San Francisco on Doordash.

Resources

GitHub repository: https://github.com/theredsix/agent-browser-protocol

Benchmark results: https://github.com/theredsix/abp-online-mind2web-results

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Repowise: Pre-computed codebase context for Claude Code cuts token usage and task time in half
Tools

Repowise: Pre-computed codebase context for Claude Code cuts token usage and task time in half

Repowise indexes your codebase into four layers (dependency graph, git signals, doc wiki, ADRs) and exposes eight MCP tools to Claude Code, reducing a 30-file archaeology session to 5 MCP calls and 2 minutes.

OpenClawRadar
🦀
Tools

Survey of Local-First Markdown Memory Servers for AI Agents: Mem0, Hindsight, Zep, and the Newcomer Engram

A user tested ~20 local agent memory systems for storing memories as editable files. Engram (by Obsidian68) was the only one that met all requirements: fully local, Markdown storage, smart dedup, importance decay, and standalone server.

OpenClawRadar
AlterSpec v1.0: Runtime Policy Enforcement for AI Agents
Tools

AlterSpec v1.0: Runtime Policy Enforcement for AI Agents

AlterSpec v1.0 is an open-source runtime enforcement engine that sits between AI agents and their tools, evaluating actions against YAML-defined policies before execution. It provides allow/deny/review decisions, cryptographic policy signing, and audit logging.

OpenClawRadar
obsidian-mcp: Graph-Aware MCP Server for Claude with 25 Tools Targeting Large Vaults
Tools

obsidian-mcp: Graph-Aware MCP Server for Claude with 25 Tools Targeting Large Vaults

obsidian-mcp is an MCP server exposing 25 tools (including get_note, traverse_graph, query_dataview, move_note, create_notes) that gives Claude graph-aware access to your Obsidian vault — avoiding context window death on 5k-note vaults. MIT, works with Claude Desktop, Claude Code, Cursor, Cline, Continue, Zed.

OpenClawRadar