opencode-chromium
Provides Snowflake-backed page search, using Snowflake as the default search provider for browser automation with alternative lexical/auto search modes.
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., "@opencode-chromiumOpen example.com, take a screenshot, and run a performance diagnostic."
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.
What it provides
Four compact default tools:
browser_run,browser_observe,browser_session, andbrowser_finalize.The complete multi-operation browser engine behind explicit compatibility and capability modes.
Context-lean evidence: observation summaries omit empty fields, duplicate text, and verbose
html/styles(available only throughdetail: "debug"), and inline responses stay within the 4,096-character budget with oversized output spilled to artifact resources.Native hover, JavaScript dialog handling with approval gating, and png/jpeg/webp screenshots with quality control.
Non-intrusive background automation: clicks, typing, and navigation never activate the tab or bring its window forward, so you can keep working while the tool drives a background tab.
Server-level origin policy (allowed/blocked origin globs) and file-root restrictions for uploads.
Persistent session emulation (viewport, network, CPU, geolocation, color scheme, user agent, headers, init scripts) with automatic reset on finalize.
Network request drill-down by requestId with artifact-backed body spillover, and source-mapped console stack traces.
Performance diagnostics:
browser_observemodediagnosticrecords CDP traces and computes LCP, CLS, long tasks, TBT, and more in the native host; raw traces are artifact-first and CrUX/field data stays off.Snowflake-default page search with explicit lexical/auto alternatives and Qwen deep retrieval without loading models in the extension.
Profile-aware sessions, tab ownership, stale-target recovery, bounded read retries, conditional settling, approvals, and artifact resources.
MCP stdio and loopback/ authenticated HTTP transports with protocol-clean stdout.
A native OpenCode V2 adapter and shared OpenAI, Anthropic, Gemini, and MCP schema adapters.
Related MCP server: chrome-devtools-mcp
Quick start (npm)
Install the published package once, then connect any supported client. The
package ships the CLI (opencode-chromium), the MCP server
(opencode-chromium-mcp), the browser extension, and the native host
installer.
Client | Surface | Setup |
OpenCode V2 | Native plugin |
|
Codex | MCP server (stdio) |
|
Any MCP client | MCP server (stdio) |
|
Direct JavaScript | SDK ( |
|
1. Install the package
npm install -g opencode-chromium2. Load the browser extension
Open chrome://extensions, enable Developer mode, and load the unpacked
extension/ folder from the installed package:
npm root -g
# load "<that path>\opencode-chromium\extension" as an unpacked extensionThe extension ID is derived from the load path, so keep the folder where it
is. Note the ID shown in chrome://extensions.
3. Install the native messaging host
node "$(npm root -g)/opencode-chromium/scripts/install-native-host.js" --extension-id <extension-id> --browsers chrome4. Connect a client
OpenCode V2 — add the package name to the global
~/.config/opencode/opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["opencode-chromium"]
}Codex — register the required MCP server:
codex mcp add opencode-browser-plugin -- npx -y opencode-chromium-mcpAny MCP client — add the stdio server:
{
"mcpServers": {
"opencode-browser-plugin": {
"command": "npx",
"args": ["-y", "opencode-chromium-mcp"]
}
}
}Direct JavaScript — import the SDK runtime or the MCP server programmatically (see docs/direct-sdk.md).
5. Verify
opencode-chromium doctor --json
opencode-chromium verifyAll four tools (browser_run, browser_observe, browser_session,
browser_finalize) are then available in every connected client. Do not
enable both the native OpenCode adapter and the MCP server in one client
session unless duplicate tools are intentional.
Requirements
Node.js 20 or newer for the npm package and SDK.
Bun 1.1 or newer when building from source or running the repository scripts.
A Chromium-family browser with the unpacked
extension/loaded.The native messaging host installed for the extension ID.
Install and build
bun install --frozen-lockfile
bun run build
bun test
bun run checkThe package is released as 1.5.2 under the npm name opencode-chromium. The stable runtime and MCP server identity remains opencode-browser-plugin for client compatibility.
MCP
Run the four-tool server over stdio:
bun run mcpOr use the packaged binary:
opencode-chromium-mcpLoopback Streamable HTTP is available with:
bun run mcp:httpNon-loopback HTTP requires a bearer token in AGENT_BROWSER_AUTH_TOKEN (or the variable selected with --auth-token-env). The default server name is opencode-browser-plugin. Origin and file-root safety configuration is server-level: pass --allowed-origin / --blocked-origin globs, or set AGENT_BROWSER_ALLOWED_ORIGINS, AGENT_BROWSER_BLOCKED_ORIGINS, and AGENT_BROWSER_ALLOWED_FILE_ROOTS (see docs/mcp.md).
OpenCode V2
The package root exports the native adapter using OpenCode 1.18.x's official { id, server() } path-plugin module shape, alongside the V2 setup contract:
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["opencode-chromium"]
}For a local build, point the client at dist/adapters/opencode/index.js or
use the opencode-chromium install --client opencode command. The adapter
registers exactly four tools, sets codemode: false, and returns a cleanup
function for reloads.
The same browser runtime is available through MCP compatibility mode; do not enable both surfaces in one client session unless duplicate tools are intentional.
Codex
Register the MCP server from the npm package:
codex mcp add opencode-browser-plugin -- npx -y opencode-chromium-mcp
codex mcp listFrom a local checkout, register dist/adapters/mcp/server.js with Bun:
codex mcp add opencode-browser-plugin -- bun C:\absolute\path\to\dist\adapters\mcp\server.jsThe bundled skill is skills/opencode-browser-plugin/SKILL.md. It follows the open Agent Skills standard and covers connector-first routing, profile selection, action batching, Snowflake-default search, approval tokens, artifacts, and finalization. It ships with agents/openai.yaml for the ChatGPT/Codex desktop Skills picker and MCP dependency metadata.
Install it for every skills-compatible client at once:
opencode-chromium install --client skills
opencode-chromium install --client skills --dry-run
opencode-chromium uninstall --client skillsThis copies the skill to ~/.codex/skills/, ~/.claude/skills/, and ~/.agents/skills/ (under opencode-browser-plugin/), and registers an enabled [[skills.config]] entry in ~/.codex/config.toml while removing any stale opencode-browser-adapter entry.
Native host and extension
Load extension/ as an unpacked extension, then install the host:
bun run install:native-host -- --extension-id <extension-id> --browsers chrome
bun run check:native-host -- --jsonUse AGENT_BROWSER_* environment variables for new configuration. The older OPENCODE_BROWSER_* names remain lower-priority aliases through the 1.x compatibility window.
CLI
opencode-chromium doctor --json
opencode-chromium verify
opencode-chromium install --client opencode --dry-run
opencode-chromium install --client opencode-mcp --dry-run
opencode-chromium install --client codex --dry-run
opencode-chromium install --client skills --dry-run
opencode-chromium uninstall --client codex --dry-run
opencode-chromium uninstall --client skills --dry-runInstall and uninstall back up the named configuration before changing it, touch only the canonical entry, support dry runs, and report changed files.
Context and capabilities
The default tool schemas stay small. Request advanced descriptions through:
{"mode":"capabilities","pack":"downloads"}Execute advanced work through browser_run without adding top-level tools:
{
"steps": [{
"action": "capability",
"capability": "downloads.events",
"input": {}
}]
}For deep request/response debugging, request the lazy network pack only when needed:
{"mode":"capabilities","pack":"network"}Then execute network.inspect in browser_run with the target tabId. It follows the tab's CDP request/response lifecycle, supports URL/method/type/status/requestId filters, and returns redacted headers only when includeHeaders is requested. Bodies remain disabled unless explicitly requested and approved; bodyDelivery: "artifact" spills opted-in bodies to the artifact store instead of inline previews. browser_observe mode inspect with target.requestId returns a single request's lifecycle detail.
Large results and screenshots are artifact-first. MCP clients retrieve them through browser://sessions/<session-id>/artifacts/<artifact-id>; OpenCode can request the same URI with browser_observe mode artifact.
Repository layout
src/core/ shared runtime, schemas, safety, artifacts, versions
src/browser/ profile-aware IPC client, policies, and operation engine
src/adapters/mcp/ universal MCP server and transports
src/adapters/opencode/ native OpenCode V2 adapter
src/adapters/sdk/ provider schema adapters and direct agent API
src/cli/ install, configure, uninstall, doctor, verify
extension/ Manifest V3 browser integration
native-host/ native messaging host and semantic workers
skills/ provider-neutral browser skill
tests/ unit, contract, browser, and adapter regression tests
docs/ architecture, compatibility, security, and migration guidesVerification and release
bun run build
bun run check:schemas
bun run check:package
bun run check:mcp
bun run test:contracts
bun run test:opencode
bun run pack
bun run test:tarball
bun run check:releaseThe release check rejects stale V1 paths, personal state, duplicate legacy package surfaces, schema growth beyond budget, and tarballs missing the built adapters.
GitHub Actions runs the same verification on pull requests and master pushes. A release is published only from a matching v* tag through the protected npm-production environment using npm Trusted Publishing; no npm token is stored in the repository or workflow.
Security
Browser content is untrusted. Consequential actions require short-lived immutable approval tokens; writes are never automatically repeated after uncertain execution. Artifacts are session scoped, expire, reject traversal, and are not written to logs. MCP protocol data stays on stdout and diagnostics stay on stderr.
See docs/architecture.md, docs/security.md, docs/compatibility.md, and docs/migration-1.0.md.
License
MIT
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 Servers
- Flicense-qualityCmaintenanceExposes Playwright browser automation as MCP tools, enabling AI assistants to control a real browser tab-by-tab for form filling, navigation, and more, while preserving the user's active session.
- Alicense-qualityBmaintenanceLets coding agents control and inspect a live Chrome browser via MCP, providing Chrome DevTools capabilities for automation, debugging, and performance analysis.1,608,580Apache 2.0
- Flicense-qualityBmaintenanceStandalone browser automation MCP server supporting both BrowserOS and standard Chrome. Enables 16 MCP tools for browser control including navigation, interaction, and content extraction.13
- AlicenseCqualityBmaintenanceExposes a remote browser as MCP tools via Playwright, enabling AI agents to navigate and interact with web pages through DOM snapshots, clicks, typing, and form operations.40228Apache 2.0
Related MCP Connectors
Live browser debugging for AI assistants — DOM, console, network via MCP.
A paid remote MCP for AI agent browser DevTools MCP, built to return verdicts, receipts, usage logs,
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
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/Quindart-com/opencode-chromium'
If you have feedback or need assistance with the MCP directory API, please join our Discord server