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

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.
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 --mcpThen 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
👀 See Also

Claude VS Code Extension Reasoning Effort Slider Sends Inconsistent Values
The reasoning effort slider in the Claude VS Code extension sends inconsistent numeric values to the model, with non-monotonic mapping where moving the slider up can send a lower number.

Local Memory System for AI Coding Tools Extracts 2,600+ Facts from Conversation Logs
A developer built a local memory layer that ingests conversation logs from Claude Code, Factory.ai, and Codex CLI, extracts structured facts using a local LLM, and auto-injects context into new sessions. After months of use, it has indexed 13,000+ messages and extracted 2,600+ facts.

Jobly: Contract Marketplace with AI-First Dispute Resolution and Community Voting
Jobly is a contract marketplace built with Next.js 14, TypeScript, and Supabase, featuring an escrow system with 10% provider bonds on proposals and a dispute pipeline that starts with AI evaluation using Claude, then allows appeals to community stake voting.

Agent Image Skills: Simple Image Hosting for Claude Code Agents
A developer built a simple image hosting service at https://images.labnocturne.com to solve the problem of Claude Code agents generating images with nowhere to store them. The service provides instant test keys via curl, auto-deletes files after 7 days, and includes Claude Code MCP skills for upload, file listing, and deletion.