By triuzzi
Control Brave browser from Claude Code: automate web tasks (clicking, form filling, navigation), debug pages via DevTools (DOM, network, console), audit accessibility with Lighthouse, profile frontend performance (LCP, memory leaks), and search the web via Brave Search API.
Uses Chrome DevTools MCP for accessibility (a11y) debugging and auditing based on web.dev guidelines. Use when testing semantic HTML, ARIA labels, focus states, keyboard navigation, tap targets, and color contrast.
Use this skill to write shell scripts or run shell commands to automate tasks in the browser or otherwise use Chrome DevTools via CLI.
Uses Chrome DevTools via MCP for efficient debugging, troubleshooting and browser automation. Use when debugging web pages, automating browser interactions, analyzing performance, or inspecting network requests. This skill does not apply to `--slim` mode (MCP configuration).
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions "largest contentful paint", "page load speed", "CWV", or wants to improve how fast their hero image or main content renders.
Diagnoses and resolves memory leaks in JavaScript/Node.js applications. Use when a user reports high memory usage, OOM errors, or wants to analyze heapsnapshots or run memory leak detection tools like memlab.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Fork of ChromeDevTools/chrome-devtools-mcp ported to Brave Browser.
npm:
brave-mcp· repo:triuzzi/brave-devtools-mcp
brave-mcp lets your coding agent (such as Claude, Cursor, Gemini or Copilot)
control and inspect a live Brave browser. It acts as a Model-Context-Protocol
(MCP) server, giving your AI coding assistant access to the full power of
DevTools for reliable automation, in-depth debugging, and performance analysis.
A CLI is also provided for use without MCP.
brave-devtools-mcp exposes content of the browser instance to the MCP clients
allowing them to inspect, debug, and modify any data in the browser or DevTools.
Avoid sharing sensitive or personal information that you don't want to share with
MCP clients.
Performance tools may send trace URLs to the Google CrUX API to fetch real-user
experience data. To disable this, run with the --no-performance-crux flag.
Usage statistics from the upstream project are disabled by default in this fork.
You can explicitly enable them with --usage-statistics if desired.
Note: Do not use
chrome-devtools-mcp@latestfrom npm — that installs Google's Chrome-oriented server. This fork isbrave-mcp.
{
"mcpServers": {
"brave-devtools": {
"command": "npx",
"args": ["-y", "brave-mcp@latest"]
}
}
}
Add this to your MCP client config and you're done. Works with Claude Code (~/.mcp.json), Cursor (Settings → MCP), VS Code Copilot, and any other MCP client.
git clone https://github.com/triuzzi/brave-devtools-mcp.git
cd brave-devtools-mcp
npm install
npm run build
Run npm run build again after git pull when you update the repo.
Then point your MCP config at the built CLI with an absolute path:
{
"mcpServers": {
"brave-devtools": {
"command": "node",
"args": [
"/absolute/path/to/brave-devtools-mcp/build/src/bin/brave-devtools-mcp.js"
]
}
}
}
This works with Claude Code (~/.mcp.json), Cursor (Settings → MCP → New MCP Server, or mcp.json), VS Code Copilot, and any other MCP client.
If Brave is not detected automatically, set BRAVE_PATH:
{
"mcpServers": {
"brave-devtools": {
"command": "node",
"args": [
"/absolute/path/to/brave-devtools-mcp/build/src/bin/brave-devtools-mcp.js"
],
"env": {
"BRAVE_PATH": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser"
}
}
}
}
The server has two modes: launch a new instance (default) or attach to your existing Brave window.
With the basic config above, the server spawns a dedicated Brave instance with its own profile. Your existing Brave windows are untouched. This is the simplest mode — no extra setup needed.
If you want the MCP server to control the Brave window you already have open (same tabs, cookies, logins), you need to start Brave with remote debugging enabled.
Step 1: Quit Brave completely, then relaunch with the debugging flag:
# macOS
open -a "Brave Browser" --args --remote-debugging-port=9222
# Linux
brave-browser --remote-debugging-port=9222
# Windows
"C:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe" --remote-debugging-port=9222
Tip: To always start Brave with remote debugging, add
--remote-debugging-port=9222to Brave's launch shortcut or shell alias so you never have to think about it again.
Step 2: Add --browserUrl to your MCP config:
{
"mcpServers": {
"brave-devtools": {
"command": "npx",
"args": [
"-y",
"brave-mcp@latest",
"--browserUrl",
"http://localhost:9222"
]
}
}
}
Or if running from source:
npx claudepluginhub triuzzi/brave-devtools-mcpReliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
Matt Pocock's agent skills for real engineering — grilling, spec/ticket flows, TDD, code review, domain modelling and more. Plug-and-play, not vibe coding.
Harness-native ECC operator layer - 67 agents, 277 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Permanent coding companion for Claude Code — survives any update. MCP-based terminal pet with ASCII art, stats, reactions, and personality.