Vibe MCP connects Claude Desktop to your real Chrome browser through the Model Context Protocol. Add one entry to claude_desktop_config.json, install the Vibe extension, and Claude can navigate, click, fill forms, read pages, and manage tabs in the browser where you are already signed in.
claude_desktop_config.jsonjson
{
"mcpServers": {
"vibe": {
"command": "npx",
"args": ["-y", "@vibebrowser/mcp"]
}
}
}
Full Claude Desktop setup guide →Vibe MCP gives Claude Code browser tools through the Model Context Protocol. Register the @vibebrowser/mcp server once and Claude Code can navigate to a URL, click elements, fill forms, screenshot, and read page content in your real Chrome — including pages behind a login.
terminalbash
claude mcp add vibe -- npx -y @vibebrowser/mcp
Full Claude Code setup guide →Vibe MCP adds browser tools to OpenAI Codex CLI over the Model Context Protocol. Add the @vibebrowser/mcp server to your Codex configuration and Codex can navigate, click, type, scroll, screenshot, and extract content from your real Chrome, including pages that require a login.
~/.codex/config.tomltoml
[mcp_servers.vibe]
command = "npx"
args = ["-y", "@vibebrowser/mcp"]
Full OpenAI Codex CLI setup guide →The ChatGPT desktop app supports MCP servers. Add @vibebrowser/mcp as a STDIO server under Settings → MCP servers, and ChatGPT can navigate, click, type, scroll, screenshot, and extract content from your real Chrome — including pages behind a login. The desktop app, Codex CLI, and Codex IDE extension share one config at ~/.codex/config.toml.
Terminal (writes ~/.codex/config.toml, shared with the desktop app)bash
codex mcp add vibe -- npx -y @vibebrowser/mcp
Full ChatGPT desktop app setup guide →Claude supports custom connectors backed by a remote MCP server. Open Settings → Connectors → Add → Add custom connector, paste your Vibe relay URL, and Claude can navigate, click, type, scroll, screenshot, and read your real Chrome — including pages behind a login. No domain verification, no allowlist, no OAuth. Because the connector is brokered by your Claude account, it works in Cowork and on mobile, not just Claude Desktop.
Vibe extension → Settings → Agent connection URLurl
https://relay.api.vibebrowser.app/mcp/<your-routing-uuid>
Full Claude (web, Cowork & mobile) setup guide →ChatGPT supports custom apps backed by a remote MCP server. Turn on Developer mode under Settings → Security and login, then go to Plugins → Create app and paste your Vibe relay URL. ChatGPT can then navigate, click, type, scroll, screenshot, and read your real Chrome, including pages behind a login — from the web app, with no local MCP server running and no domain verification or OAuth setup.
Vibe extension → Settings → Agent connection URLurl
https://relay.api.vibebrowser.app/mcp/<your-routing-uuid>
Full ChatGPT connectors setup guide →Vibe MCP gives Cursor browser tools through the Model Context Protocol. Add the "vibe" server in Cursor Settings or ~/.cursor/mcp.json, install the Vibe Chrome extension, and Cursor can navigate, click, fill forms, screenshot, and read page content in the browser you are already signed into.
~/.cursor/mcp.jsonjson
{
"vibe": {
"command": "npx",
"args": ["-y", "@vibebrowser/mcp"]
}
}
Full Cursor setup guide →Vibe MCP adds browser tools to GitHub Copilot Chat in VS Code. Add the "vibe" server under github.copilot.chat.mcpServers in settings.json, install the Vibe Chrome extension, and Copilot can navigate, click, type, screenshot, and read pages in your real Chrome session.
VS Code settings.jsonjson
{
"github.copilot.chat.mcpServers": {
"vibe": {
"command": "npx",
"args": ["-y", "@vibebrowser/mcp"]
}
}
}
Full VS Code (GitHub Copilot) setup guide →Vibe MCP connects Windsurf to your real Chrome browser. Add the "vibe" server to ~/.codeium/windsurf/mcp_config.json, install the Vibe extension, and Windsurf can navigate, click, fill forms, screenshot, and extract content from pages you are already logged into.
~/.codeium/windsurf/mcp_config.jsonjson
{
"mcpServers": {
"vibe": {
"command": "npx",
"args": ["-y", "@vibebrowser/mcp"]
}
}
}
Full Windsurf setup guide →Vibe MCP gives Gemini CLI browser tools through the Model Context Protocol. Add the "vibe" server to ~/.gemini/settings.json, install the Vibe Chrome extension, and Gemini can navigate, click, type, screenshot, and read content from your real Chrome session.
~/.gemini/settings.jsonjson
{
"mcpServers": {
"vibe": {
"command": "npx",
"args": ["-y", "@vibebrowser/mcp"]
}
}
}
Full Gemini CLI setup guide →Vibe MCP connects OpenCode to your real Chrome browser. Add the "vibe" server under mcp.servers in .opencode/config.json, install the Vibe extension, and OpenCode can navigate, click, fill forms, screenshot, and read content from pages you are already logged into.
.opencode/config.jsonjson
{
"mcp": {
"servers": {
"vibe": {
"command": "npx",
"args": ["-y", "@vibebrowser/mcp"]
}
}
}
}
Full OpenCode setup guide →