Your browser already works!
English | 中文 | Deutsch | Español | Français | 日本語 | 한국어 | Português | Русский
AIPex — An open-source browser automation agent that lives in your existing browser.
- Zero Migration: No new browser to install. No new workflow to learn.
- Open Source: MIT licensed. Fully transparent, auditable, and extensible.
- Privacy First: Your data never leaves your machine. Bring Your Own Key (BYOK).
- Agent Ready: MCP, skills, and the built-in
browser-clishare the same local browser runtime.
Every browser automation tool asks you to:
- Install a separate browser (Dia/Comet)
- Pay monthly subscriptions (ChatGPT Atlas)
- Give up your browsing data
We asked: why can't automation just run in the browser you already use?
AIPex is the answer. Install the extension, bring your own API key, and automate anything — right where you already work.
AIPex runs inside the browser you already use instead of streaming a remote browser or launching a separate automation profile.
- Local-first control path: agents talk to a local daemon over WebSocket, and the extension executes actions directly through browser APIs.
- DOM snapshot before vision: agents can search structured page snapshots with glob/grep patterns and act by stable element UIDs, avoiding slow screenshot loops for most tasks.
- No browser migration cost: your logged-in sessions, cookies, tabs, history, and extensions are already there.
- Lower token and latency overhead: text snapshots and targeted element operations are much cheaper than repeatedly sending full-page images.
- Install — Chrome Web Store or Edge Add-ons
- Open — Press AIPex icon
- Automate — Type or speak what you want in natural language
AIPex now supports the Model Context Protocol (MCP), giving AI coding agents like Cursor, Claude Code, and VS Code Copilot direct control over your browser.
AI Agent ──stdio──▶ aipex-mcp-bridge ──WebSocket──▶ AIPex Extension ──▶ Browser
Cursor (.cursor/mcp.json) · Claude Desktop (claude_desktop_config.json) · Windsurf (mcp_config.json):
{
"mcpServers": {
"aipex-browser": {
"command": "npx",
"args": ["-y", "aipex-mcp-bridge"]
}
}
}Claude Code:
claude mcp add aipex-browser -- npx -y aipex-mcp-bridgeVS Code Copilot (.vscode/mcp.json):
{
"servers": {
"aipex-browser": {
"command": "npx",
"args": ["-y", "aipex-mcp-bridge"]
}
}
}- Open Chrome → AIPex icon → Options
- Set WebSocket URL to
ws://localhost:9223/extension - Click Connect
Your agent now has 30+ browser automation tools available via MCP. See mcp-bridge/README.md for advanced options.
browser-cli has been merged into AIPex. It ships with aipex-mcp-bridge and talks to the same local daemon as MCP, so scripts, CI jobs, and coding agents can control your existing browser without a separate service.
npm install -g aipex-mcp-bridge
browser-cli status
browser-cli tab list
browser-cli tab new https://example.com
browser-cli page search "button*" --tab 123
browser-cli interact click btn-42 --tab 123The lower-level aipex-cli is still available for raw tool calls, while browser-cli provides human-friendly command groups such as tab, page, interact, download, intervention, and skill.
AIPex ships an aipex-browser skill — a ready-to-use skill package for agents that support the skill protocol (such as Claude Code and OpenClaw-compatible runtimes).
The skill bundles tool usage strategy, complete parameter schemas for all 30+ browser tools, and common automation patterns — so an agent can control the browser effectively without discovering tools from scratch.
See skill/SKILL.md for the full skill definition.
10.23.mp4
10.23.2.mp4
10.23.5.mp4
10.23.6.mp4
-
Page Understanding
-
Accessbility Tree
-
Optimised Dom
-
Vision
-
-
Context Engineering
-
Search-based Retrival
-
Drop unused snapshot
-
id-based operation
-
-
Integration
-
Cursor
-
Claude Code
-
-
Skills
-
File system
-
Script Execution
-
-
Evaluation - Online-Mind2Web
We love contributions! See DEVELOPMENT.md for setup instructions.
Made with ❤️ by the AIPex Team