claude-preview-mcp
Provides headless Chrome browser automation capabilities for navigation, screenshots, DOM inspection, clicking, filling forms, and JavaScript execution within previewed web applications.
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., "@claude-preview-mcptake a screenshot of the local app"
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.
claude-preview-mcp
Dev-server lifecycle + Chrome browser automation, as an MCP server. The
preview_*tool family that any MCP-compatible agent can use.
This is the Anthropic Claude_Preview plugin re-implemented as a standalone MCP server so it works in Claude Code, OpenCode, Kilo Code, and any other MCP-compatible agent — with one canonical launch.json per project.
The repo ships the patched-upstream source (TypeScript) + pre-built JS, so installs don't need a build step. A single install.sh handles all three target agents.
What you get
mcp__Claude_Preview__preview_* tools (14 total):
Tool | What it does | Browser? |
| Spawn a dev server from | — |
| SIGTERM / SIGKILL a running server | — |
| List configured + currently-running servers | — |
| Last N lines of combined stdout+stderr (default 80, max 500) | — |
| Open a URL in a headless Chrome | yes |
| PNG/JPEG screenshot, base64 inline or saved to disk | yes |
| A11y tree (tag, role, name, value, focusable) | yes |
| DOM element by CSS selector (rect, attrs, text, display) | yes |
| Click an element by CSS selector | yes |
| Fill an input/textarea/select by CSS selector | yes |
| Run JavaScript in the page, return JSON-serializable result | yes |
| Captured console messages (filter by substring or type) | yes |
| List captured requests, or fetch one response body by URL | yes |
| Resize the preview viewport | yes |
Browser-required tools use the system's Chrome (/Applications/Google Chrome.app on macOS, google-chrome / chromium on Linux).
Related MCP server: @nimbus21.ai/chrome-devtools-mcp
Install (RECOMMENDED: Claude Code as a plugin)
# 1. Clone
git clone https://github.com/MichaelTendoSsemwanga/claude-preview-mcp
cd claude-preview-mcp
# 2. Pick your agent
./scripts/install.sh claude-code # one-line: plugin cache, plugin.json, done
./scripts/install.sh opencode # ~/tools + ~/.config/opencode/opencode.jsonc
./scripts/install.sh kilo # ~/tools + ~/.kilocode/mcp_settings.json
./scripts/install.sh all # all threeinstall.sh:
Copies the committed
build/into the right agent locationProvisions
node_modules/(just@modelcontextprotocol/sdk+puppeteer-core, ~25MB) into the same location via a temp scratch dir — so the repo itself stays lightWrites / merges the MCP config (uses
jqfor an atomic JSON merge that preserves any existing config)Restores
.claude-plugin/plugin.jsonfor Claude Code
Per-agent activate
Agent | Activate |
Claude Code | restart; tools appear as |
OpenCode |
|
Kilo Code | VS Code: Cmd-Shift-P → "Developer: Reload Window" |
Why Claude Code is recommended
One-line setup (drop the plugin into the cache, no MCP config to touch)
Plugin lifecycle is managed by Claude Code — auto-spawned on launch, auto-killed on exit
The
plugin.jsonuses${CLAUDE_PLUGIN_ROOT}so the install path is stable across moves/upgradesSame
launch.jsonfile works in Claude Code's built-in preview (which uses theconfigurationsformat) AND this MCP
Why other agents
OpenCode and Kilo don't have a plugin system. They register MCP servers by hand-rolling a config file, and they don't ship a configurations preview concept. This MCP bridges that gap: they get the same dev-server workflow, using the same launch.json, just with the extra hop of an MCP server entry in their config.
.claude/launch.json (the only project-side file)
The MCP server reads dev-server definitions from <project>/.claude/launch.json, walking upward from the agent's process.cwd() until it finds one. Two formats supported, picked in priority order:
Claude Code format (preferred)
{
"version": "0.0.0",
"configurations": [
{
"name": "back-office",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 5173
},
{
"name": "tkt-backend",
"runtimeExecutable": "bash",
"runtimeArgs": ["-c", "cd /Users/loft/tkt-backend && bun run --hot src/index.ts"],
"port": 3001
}
]
}Fields: name, runtimeExecutable, runtimeArgs (array), port, autoPort (advisory), env (object), url (optional — overrides the synthesized http://localhost:{port}).
The MCP translates internally: runtimeExecutable→command, runtimeArgs→args, port→url.
Legacy servers format (still supported)
{
"servers": [
{
"name": "web",
"command": "npm",
"args": ["run", "dev"],
"url": "http://localhost:3000",
"readyPattern": "Local:"
}
]
}Use this if you have a project that already used it. Don't mix the two formats in the same file (only configurations is read when both are present).
Repo layout
claude-preview-mcp/
├── .claude-plugin/
│ └── plugin.json # Claude Code plugin manifest
├── src/ # TypeScript source (patches live here)
│ ├── index.ts # MCP server entry, tool definitions, handlers
│ ├── process-manager.ts # launch.json parser + dev-server spawn
│ ├── browser-manager.ts # headless Chrome session
│ └── schemas.ts # zod input schemas
├── build/ # Pre-compiled JS (committed; don't need to build)
│ └── *.js, *.js.map
├── scripts/
│ └── install.sh # Universal installer (claude-code | opencode | kilo | all)
├── docs/
│ └── ARCHITECTURE.md # Claude Code plugin internals + MCP protocol details
├── package.json # Name, deps, build script
├── package-lock.json # Locked dep versions
├── tsconfig.json # TS compiler config (Node16 ESM, strict)
├── .gitignore
├── LICENSE # MIT
└── README.md # this fileDevelop / rebuild
# Edit src/*.ts
npm install # one time, fetches dev deps
npm run build # tsc → build/
git add build/ src/ # commit bothThe install script will use the freshly-built build/ on the next run.
Smoke test (any agent)
In the agent's session:
mcp__Claude_Preview__preview_list→ returns{configured: [...], running: []}mcp__Claude_Preview__preview_start {"name": "<one-of-your-configurations>"}→ starts itmcp__Claude_Preview__preview_list→ now shows it inrunning[](browser)
preview_navigate {"url": "http://localhost:5173"}thenpreview_snapshotpreview_logs {"name": "<name>", "tail": 50}→ see the dev-server outputpreview_stop {"name": "<name>"}→ SIGTERM
Or from the shell, no agent needed:
node ./build/index.js &
sleep 1
# Talk JSON-RPC to stdin/stdout (use the test script in /tmp, or any MCP client)
kill %1What's patched vs upstream
The Anthropic Claude_Preview plugin (this repo's source) ships with four bugs that surface under modern MCP clients (Claude Code, OpenCode 1.17+ — both use protocol 2025-11-25). All four are fixed in src/:
# | Symptom | Fix location |
4a |
|
|
4b | Only reads legacy |
|
4c |
|
|
4d |
|
|
4e |
|
|
Each patch has an inline comment explaining the original cause. See docs/ARCHITECTURE.md for the long version with the diagnostic traces.
Caveats
One Chrome per MCP server. If you have this AND
chrome-devtools-mcpregistered, each spawns its own Chrome instance. Don't run both pointing at the same page.One dev server per port. Two preview systems (Claude Code's built-in + this MCP) can't both bind the same port. Use one per project.
Process state isn't shared. Servers started via this MCP die when the MCP process exits. Claude Code's built-in preview is more durable.
launch.jsonwalks up. If you run an agent from~/expecting project launch files, it won't —cdinto the project root first.Per-agent permissions. Most agents prompt on first tool use. Allowlist
Claude_Preview(or each individual tool) to stop the prompts. The Kilo Code install includes analwaysAllowblock by default.macOS Chrome path is hard-coded in
browser-manager.ts(looks for/Applications/Google Chrome.app/Contents/MacOS/Google Chromefirst, thengoogle-chromeon PATH). Override withCHROME_PATHenv var.
License
MIT — see LICENSE. Bundled dependencies (@modelcontextprotocol/sdk, puppeteer-core) retain their own licenses.
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.
Latest Blog Posts
- 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/MichaelTendoSsemwanga/claude-preview-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server