Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@browserops/bridge) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@browserops/bridge
MCP stdio server for browserops. End-users typically want the
browseropsCLI package — it installs this transitively.
@browserops/bridge ships two binaries:
browserops-daemon— long-running Node process. Hosts the WebSocket primary onws://127.0.0.1:57321that the browserops Chrome extension connects to, plus the rate limiter, risky-action gate, and procedure runtime.browserops-shim— per-MCP-client stdio adapter. Speaks MCP over stdio to your AI client (Claude Code, Cursor, Codex CLI, Continue, Windsurf, …) and forwardsbrowser_*/procedures_*calls into the daemon over a local Unix socket.
Install
Most users should install the browserops CLI, which brings the bridge along:
npm i -g browseropsStandalone install (custom MCP-client setups only):
npm i -g @browserops/bridgeMCP-client registration
{
"mcpServers": {
"browserops": { "command": "browserops-shim" }
}
}Codex CLI (~/.codex/config.toml):
[mcp_servers.browserops]
command = "browserops-shim"
args = []The shim auto-starts the daemon on first use and reuses it across MCP clients.
Exposed prompts
browserops {task}— operating guide + task as a user messagebrowserops_procedure {name, task?}— inlines a saved procedure's YAML
Source & docs
github.com/quaylabshq/browserops
License
MIT