skyvern browser serve, which starts a separate Chrome browser with a copied profile, the extension controls
explicitly shared tabs in your actual browser. Chrome 136 and later ignores --remote-debugging-port for the default
profile, so an extension is the only way to automate that browser directly.
Requirements
- Chrome 125 or later
- A local Skyvern MCP server connected over stdio
Install the extension
The recommended setup command prints the unpacked extension directory, opens Chrome’s extensions page when possible, and prints the remaining steps:skyvern browser extension-pair.
For manual setup:
-
Print the directory containing the extension:
-
Open
chrome://extensionsin Chrome. - Enable Developer mode.
- Click Load unpacked.
- Select the directory printed by the command.
Pair the extension
With your MCP server running, start the recommended one-click flow:Configure MCP
SetBROWSER_TYPE=extension-connect in the environment for your local MCP server. For example, use this stdio
configuration in an MCP client that accepts JSON:
skyvern_browser_session_create needs it. The flag starts the
bridge eagerly with the MCP server.
Check the local setup without exposing the pairing token:
19777; a custom port is configured with
SKYVERN_BROWSER_EXTENSION_PORT for the MCP server and under Advanced settings in the popup.
Use your browser
After the extension is connected, a typical MCP flow is:- Call
skyvern_browser_session_createto connect Skyvern to the extension. - Call
skyvern_navigateto open a page. - Call
skyvern_observeto inspect the page and identify actions. - Call
skyvern_executeorskyvern_clickto interact with the page.
skyvern_click and skyvern_type also accept x and y
coordinates in viewport CSS pixels, measured from the top-left of the web content. Provide both coordinates together
and do not combine them with a selector. Coordinates must be finite and non-negative. skyvern_execute can pass the
same coordinates to click and type actions. Coordinates align with skyvern_screenshot(full_page=False) and are not
scaled by the device pixel ratio.
Consent and security
Membership in the Chrome tab group named Skyvern Controlled is the consent boundary. Dragging a tab into that group shares it with Skyvern; dragging it out immediately revokes access. The Add to Skyvern Controlled and Remove from Skyvern Controlled buttons in the Skyvern Agent popup make the same group-membership changes. The extension never discloses tabs outside the group to Skyvern. Skyvern’s scope includes:- Existing tabs you explicitly add to Skyvern Controlled, by dragging or with the popup
- Tabs Skyvern creates and adds to Skyvern Controlled
- Popups opened by a controlled tab and added to Skyvern Controlled
127.0.0.1. The default endpoint is
ws://127.0.0.1:19777/extension/v1. Pairing-token authentication verifies both the extension and the local MCP bridge,
and the token is never included in the URL.
The extension refuses to control chrome://, chrome-untrusted://, chrome-extension://, devtools://, edge://,
file://, Chrome Web Store pages on chromewebstore.google.com, and about: pages other than about:blank.
Limitations
- Downloads and file-chooser management are not supported yet.
- Incognito windows are not supported.
- Opening DevTools for a controlled tab detaches Skyvern and revokes access to that tab.
- Only one local Skyvern MCP process can control the extension at a time.
- Hosted Skyvern MCP cannot use the extension yet.
- Chrome internal pages, extension pages, DevTools, local files, the Chrome Web Store, and the other restricted targets listed above cannot be controlled.
Troubleshooting
Skyvern browser extension is not connected
Skyvern browser extension is not connected
Follow the steps in order:
- Run
skyvern browser extension-installand follow its numbered setup instructions. - Start the MCP server with
--browser-extensionorBROWSER_TYPE=extension-connect. - Run
skyvern browser extension-statusand confirm it reports the bridge listening on the configured port. - Run
skyvern browser extension-pair, approve the browser page, then approve the Skyvern Agent confirmation tab. - If one-click pairing fails, open the Skyvern Agent popup and use
skyvern browser extension-tokenas the manual paste fallback. - Add at least one controllable tab to Skyvern Controlled, then retry.
Port already in use
Port already in use
The bridge uses port
19777 by default. Set SKYVERN_BROWSER_EXTENSION_PORT in the MCP server environment,
configure the same port under Advanced settings in the popup, then restart the MCP server and reconnect the
extension.Rotate the pairing token
Rotate the pairing token
Stop the MCP server, delete
~/.skyvern/browser_extension_token, and restart the server. Run
skyvern browser extension-pair and approve both browser steps. Use skyvern browser extension-token and paste the
new token into the Skyvern Agent popup only as a manual fallback.If SKYVERN_BROWSER_EXTENSION_TOKEN is set in the MCP environment, remove it before rotating the token file
because the environment value takes precedence.DevTools or the debugger infobar disconnected a tab
DevTools or the debugger infobar disconnected a tab
Close DevTools if it is open, then add the tab to Skyvern Controlled again by dragging it into the group or using
the popup. If you clicked Cancel in Chrome’s debugger infobar, adding the tab again restores consent; Skyvern
never reattaches automatically.

