Browser Inspector MCP MCP Server

MCP server that gives AI coding tools the same CSS visibility you have in DevTools — rendered class names, full cascade, what's winning and why.

Local serverstdioGo

What is the Browser Inspector MCP MCP server?

Connect Browser Inspector MCP to Claude, Cursor or any other MCP client and it stops being a tab you switch to. MCP server that gives AI coding tools the same CSS visibility you have in DevTools — rendered class names, full cascade, what's winning and why. The browser inspector mcp mcp server is what makes that connection.

What the server does

A debugging primitive, not a testing tool — no test runner, no pass/fail. Before your AI writes CSS, let it see what's actually in the browser — the real rendered class names, the full cascade of rules, what's winning and why. Same data a human gets from DevTools. Zero manual copy-paste. When something doesn't work, the tool explains why and points toward the likely cause.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Cursor — In Cursor, go to: Settings → MCP — there's usually a UI to add MCP servers directly, which is easier than editing the file manually. If you
  • Windsurf — Open the file, add the same JSON block, save, and restart Windsurf

Credentials and setup notes

Configuration is passed through the environment: BROWSER_INSPECTOR_HOST. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

This tool connects two things you need to already have set up: an AI coding tool and a web project you're actively working on. Here's what each of those means and how to get them. ---

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Where it fits

This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Browser Inspector MCP's toolset — Cursor, Windsurf — is a fair guide to whether it matches your workflow. It is maintained by betson-uni; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Browser Inspector MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
CursorIn Cursor, go to: **Settings → MCP** — there's usually a UI to add MCP servers directly, which is easier than editing the file manually. If you prefer to edit the file, add the same JSON block above.
WindsurfOpen the file, add the same JSON block, save, and **restart Windsurf**.

How to install the Browser Inspector MCP MCP server

{
  "mcpServers": {
    "browser-inspector": {
      "command": "npx",
      "args": ["-y", "browser-inspector-mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

This tool connects two things you need to already have set up: an AI coding tool and a web project you're actively working on. Here's what each of those means and how to get them. ---

VariableDescriptionRequired
BROWSER_INSPECTOR_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use Browser Inspector MCP to Cursor.
  • Use Browser Inspector MCP to Windsurf.

Frequently asked questions

The tool works with Claude Code, Cursor, Windsurf, Cline, Continue, and any MCP-compatible coding tool that accepts the same JSON configuration.