Aether Browser MCP
Enables browser automation through a companion Chrome extension, allowing agents to read the active tab as a compact numbered Markdown action map, interact with page elements via synthesized mouse and keyboard events, navigate tabs, and capture viewport screenshots within an authenticated Chrome session.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Aether Browser MCPgo to my Gmail inbox and summarize new emails"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Aether Browser MCP
A lightweight, token-efficient browser automation bridge for LLM agents (Claude Desktop, Cursor, Windsurf, Antigravity) built on the Model Context Protocol (MCP).
Unlike standard headless browser tools or raw Chrome DevTools protocol wrappers that dump 50,000+ tokens of raw HTML into context, Aether serializes active web pages into a compact, numbered Markdown map (typically <1,000 tokens) and dispatches synthetic event streams.
Origin & Background
Aether started out of frustration with existing tooling like chrome-devtools-mcp.
While OpenAI's browser operator proved that lightweight DOM mapping with active-session reuse is the only practical way for models to navigate the web without exhausting context windows, the broader ecosystem was left with raw CDP wrappers that dump 50,000–100,000+ tokens of unstructured HTML per turn.
Aether was originally built to bring that fast, token-efficient browser control to Google Antigravity and Gemini. By implementing it over the standard Model Context Protocol (MCP), it now serves as a universal, lightweight browser bridge for any LLM client or agent harness (Claude Desktop, Cursor, Antigravity, OpenDevin, custom agents).
Related MCP server: OpenChrome
Why Aether?
Standard browser automation approaches for LLMs have two core issues:
Context Window Exhaustion: Dumping raw DOM trees or full HTML structures consumes 30k–100k+ tokens per turn, driving up latency and API cost while degrading model reasoning.
Session Isolation: Headless drivers (Playwright, Puppeteer) launch blank sandbox profiles that lack existing authentication, cookies, and active sessions.
Technical Mechanism
Numbered Anchor Serialization: Converts the DOM tree into clean Markdown where every actionable element (
<a>,<button>,<input>,<select>,contenteditable, ARIA roles) receives a sequential numeric anchor ([1],[2],[3]). Strips scripts, styles, SVGs, and hidden/zero-opacity nodes.Session Continuity: Connects directly to your daily browser profile via Chrome Native Messaging and a local WebSocket relay (
ws://127.0.0.1:18888), allowing agents to operate within authenticated sessions.Non-Destructive Tab Grouping: All agent-directed navigation runs inside a dedicated
⚡ Aether AgentChrome Tab Group, preventing personal active tabs from being overwritten.
Architecture
[ AI Client ] (Claude Desktop / Cursor / Antigravity)
|
| stdio (Model Context Protocol JSON-RPC)
v
[ Aether MCP Server ] (Node.js 22 / TypeScript)
|
| Local IPC (Native Messaging / WebSocket)
v
[ Aether Chrome Extension ] (Manifest V3)
├── Background Worker (Tab Group & Session Router)
└── Content Script (DOM Serializer & Event Dispatcher)Installation & Setup
1. Clone and Build
git clone https://github.com/longebane/aether-browser-mcp.git
cd aether-browser-mcp
npm install
npm run build2. Load the Chrome Extension
Open Google Chrome and navigate to
chrome://extensions/.Toggle Developer mode in the top right.
Click Load unpacked and select the
dist/extensionfolder inside this repository.Copy the generated Extension ID.
3. Register the Native Messaging Host
Windows (PowerShell):
powershell -ExecutionPolicy Bypass -File .\scripts\install-host.ps1 -ExtensionId <YOUR_EXTENSION_ID>Client Configuration
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"aether-browser": {
"command": "node",
"args": ["<PATH_TO_AETHER_REPO>/dist/mcp/index.js"]
}
}
}Cursor
Add under Settings > Features > MCP:
{
"cursor.mcpServers": {
"aether-browser": {
"command": "node",
"args": ["<PATH_TO_AETHER_REPO>/dist/mcp/index.js"]
}
}
}Antigravity
Add to ~/.gemini/antigravity/mcp_config.json:
{
"mcpServers": {
"aether-browser": {
"command": "node",
"args": ["<PATH_TO_AETHER_REPO>/dist/mcp/index.js"]
}
}
}MCP Tool Reference
Tool | Parameters | Description |
|
| Serializes current tab into a numbered Markdown action map ( |
|
| Executes |
|
| Captures viewport screenshot for multimodal evaluation. |
|
| Navigates inside the dedicated |
| none | Returns extension connectivity and active tab metadata. |
Packaging & Testing
# Run unit and integration tests (Vitest + JSDOM)
npm test
# Build Chrome Web Store zip bundle
npm run pack:extensionOutput bundle will be written to dist/aether-browser-bridge-v0.1.0.zip.
License
MIT © Studio Dao
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
AI-powered web automation. Navigate websites using AI agents for one page or a thousand
AI-powered web automation. Navigate websites using AI agents for one page or a thousand
Stealth web automation for AI agents. Login, signup, navigate, screenshot.
Stealth web automation for AI agents. Login, signup, navigate, screenshot.
Related MCP Servers
- AlicenseBqualityFmaintenanceEnables AI agents to directly control your real Chrome browser with full context including login sessions, cookies, and open tabs. It provides tools for page scanning, JavaScript execution, CDP control, screenshots, and physical mouse/keyboard input for authentic browser automation.20239MIT
- AlicenseBqualityAmaintenanceControls a real Chrome browser for AI agents, enabling authenticated automation with parallel lanes, token-efficient page reads, and robust recovery mechanisms.100114236MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to control a browser with 30 tools for navigation, interaction, extraction, and tab management, supporting human-like browser automation.13MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/longebane/aether-browser-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server