scalebrowser-mcp
OfficialClick on "Deploy 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., "@scalebrowser-mcpOpen Gmail in my profile 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.
Scalebrowser MCP
Your agent got blocked, stopped at a login, or gave up on a captcha? Scalebrowser gives each AI agent its own isolated browser with a persistent identity, running on your own machine instead of a vendor's cloud. It stays signed in, handles the captcha, types like a human, and you can take over whenever you want.
This repository connects that browser to your agent over MCP: copy-paste configurations for every client the documentation covers, a small stdio bridge, and runnable SDK examples.
Before you start
Windows 10 or 11, 64-bit, with a real GPU. Scalebrowser is a desktop app that runs on your machine. There is no hosted mode.
A Scalebrowser account with an active plan. The way in is a 7-day trial with one browser. A payment method is required up front. Plans and prices
Free, no account needed: scalebrowser.net/check measures how your current browser looks from the outside, and scalebrowser.net/ai-agent-check measures what your automation tool does with it. Point your agent at the second one and see what a website can tell.
Try it in five minutes
Sign in at scalebrowser.net, open Download, and run the installer. It installs for the current user and asks for no administrator rights. SmartScreen warns on first run: choose More info, then Run anyway.
Start the app and press Sign in. The app then downloads and verifies the browser engine, which has to finish before any profile can start.
Copy your API token from Settings, General, Connect an agent.
Connect your agent. For Claude Code it is one command:
claude mcp add --transport http scalebrowser http://127.0.0.1:8787/v1/mcp \ --header "Authorization: Bearer $SCALEBROWSER_TOKEN"Ask it something:
Open news.ycombinator.com in a Scalebrowser profile, read the front page, and tell me the three stories with the most comments.
The agent takes a lease, which reserves a profile and starts its browser, opens the page, reads a text map of it and answers. Then ask it to release the profile.
Related MCP server: YaviControl MCP Server
Connect your client
Each file below is the configuration from the official documentation, ready to copy. Replace <token> with your API token and <you> with your Windows user name. Where each file goes, and the two spellings that fail without an error, is in clients/README.md.
Client | Configuration |
Claude Code | claude-code.mcp.json or the command above |
Claude desktop app | |
Cursor | |
Codex | |
GitHub Copilot in VS Code | |
Antigravity | |
Claude Code inside WSL | |
Claude on the web, Grok, ChatGPT and other cloud chat services | No file: they reach your machine through remote access |
What your agent gets
The agent works from a text map of the page and addresses elements by reference. It looks at the page once, then only at what moved: 13,507 tokens where Playwright MCP needs 2.1 million.
Signing in:
credential_fillsigns in with a login stored in the profile, andcredential_newsigns up with a password Scalebrowser draws and stores. The agent never sees the value.Confirmation codes:
read_inboxreads the codes sent to the address bound to the profile, andinbox_open_linkopens a link from a message.Challenges:
press_and_hold,clickand four measuring tools work through verification challenges with the same human input. The measured status per challenge type says what passes and what does not.Proof of the work:
recordandvideoturn a run into a film, and every tool call becomes a step in the run's trail.
The full list is in the tool reference. What an agent may do is decided by the app, not by the client.
The bridge
bridge/scalebrowser-mcp.mjs is a stdio MCP server with no dependencies. With the Scalebrowser app running on the same Windows machine, it relays every message to the app's own MCP endpoint, using the address and token the app keeps in %LOCALAPPDATA%\Scalebrowser. Without the app, it answers with the tool list and install instructions. That second mode is what MCP directories see when they build this repository.
Clients that speak HTTP do not need it: use the configurations above. For a client that only starts servers over stdio:
node bridge/scalebrowser-mcp.mjsIt needs Node 22 or newer. --data-dir points it at another data directory, and SCALEBROWSER_TOKEN overrides the token file.
SDK examples
The same small task in both SDKs: open Hacker News in a profile and print the three top stories. Run them on the Windows machine the app runs on, with your token in SCALEBROWSER_TOKEN.
cd examples/node
npm ci
node top-stories.mjscd examples/python
pip install --require-hashes -r requirements.txt
python top_stories.pyBoth use the published SDKs, @scalebrowser/sdk on npm and scalebrowser on PyPI. The SDK documentation covers the full surface.
Links
Questions: support@scalebrowser.net
License
Everything in this repository is MIT-licensed. The Scalebrowser app and its browser engine are a separate, licensed product.
This server cannot be deployed
Maintenance
Related MCP Connectors
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
A paid remote MCP for AI agent browser MCP session, built to return verdicts, receipts, usage logs,
Stealth web browser for agents: search, fetch, click, download and type in persistent MCP sessions.
A paid remote MCP for AI agent browser approval MCP, built to return verdicts, receipts, usage logs,
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceGives MCP-compatible AI agents direct control of your real browser with existing sessions, logins, and cookies. Supports multiple agents concurrently with tab targeting.7 npm3MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to control your existing Chrome browser via MCP, using your logged-in sessions for automation on authenticated sites. Provides high-level browser tools plus raw CDP and Chrome API access.MIT
- FlicenseNot gradedqualityAmaintenanceEnables AI agents to control a persistent local browser with live tabs, navigation, interaction, inspection, and state management through MCP.4-
- AlicenseNot gradedqualityBmaintenanceEnables any MCP-compatible AI agent to drive your own Chrome browser with your existing login state, filling forms, clicking elements, fetching data, and handling captchas without API keys or re-authentication.710 npm205MIT