The Aluvia MCP server exposes browser session management, geo-targeting, and account operations as Model Context Protocol tools for AI agents.
Most browser automation work still happens through a UI a human drives. Aluvia MCP server moves it into the conversation instead. The Aluvia MCP server exposes browser session management, geo-targeting, and account operations as Model Context Protocol tools for AI agents.
This repository is organized as a monorepo with three packages:
Installation goes through your MCP client rather than a global install: point it at @aluvia/sdk on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
The server publishes 3 tools. What each one is for:
Examples — // Proxy specific hosts only await client.updateRules(["target-site.com", "*.google.com"]);Endpoints — The Endpoints tool exposed by this serverExample — const api = new AluviaApi({ apiKey: process.env.ALUVIA_API_KEY! });Configuration is passed through the environment: ALUVIA_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Aluvia's toolset — Examples, Endpoints, Example — is a fair guide to whether it matches your workflow.
This entry was verified against Aluvia's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| Examples | // Proxy specific hosts only await client.updateRules(["target-site.com", "*.google.com"]); |
| Endpoints | The Endpoints tool exposed by this server. |
| Example | const api = new AluviaApi({ apiKey: process.env.ALUVIA_API_KEY! }); |
{
"mcpServers": {
"github-com-aluvia-connect-sdk-node-tree-main-packages": {
"command": "npx",
"args": ["-y", "@aluvia/sdk"],
"env": {
"ALUVIA_API_KEY": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| ALUVIA_API_KEY | Credential the server authenticates with. | Yes |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.