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., "@Browser MCP Bridgecapture a screenshot of the current tab"
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.
Browser MCP Bridge
A comprehensive browser extension and MCP server solution that bridges browser content, developer tools data, and web page interactions with Claude Code through the Model Context Protocol (MCP).
Overview
This project consists of two main components:
Browser Extension - Captures browser content, DOM data, console messages, network activity, and developer tools information
MCP Server - Exposes browser data to Claude Code through standardized MCP tools and resources
Features
Browser Extension
Page Content Extraction - Full HTML, text content, metadata, and page structure
DOM Inspection - Complete DOM tree snapshots with computed styles
Console Monitoring - Real-time console logs, errors, and warnings
Network Activity - HTTP requests, responses, and performance metrics
Developer Tools Integration - Custom DevTools panel for advanced inspection
JavaScript Execution - Execute arbitrary JavaScript in page context
Screenshot Capture - Visual snapshots of browser tabs
Accessibility Data - Accessibility tree and ARIA attributes
Performance Metrics - Load times, resource usage, and Core Web Vitals
MCP Server
11 Specialized Tools - Comprehensive browser automation and inspection tools
Dynamic Resources - Real-time access to page content, DOM, and console data
WebSocket Communication - Real-time bidirectional communication with browser
Multi-tab Support - Manage and inspect multiple browser tabs simultaneously
Installation
Prerequisites
Node.js 18.0.0 or higher
Chrome, Edge, or Chromium-based browser
Claude Code CLI
1. Install the MCP Server
# Clone or navigate to the project directory
cd /path/to/browser-mcp
# Install server dependencies
cd server
npm install
# Make the server executable
chmod +x index.js2. Install the Browser Extension
Chrome/Chromium/Edge Installation
Open Extension Management
Navigate to
chrome://extensions/(Chrome)Or
edge://extensions/(Edge)
Enable Developer Mode
Toggle "Developer mode" in the top-right corner
Load the Extension
Click "Load unpacked"
Select the
/path/to/browser-mcp/extensiondirectoryThe extension should appear in your extensions list
Verify Installation
Look for the "Browser MCP Bridge" extension icon in your toolbar
The extension should show as "Enabled"
Alternative: Create Extension Package
# Navigate to extension directory
cd extension
# Create a zip package for distribution
zip -r browser-mcp-extension.zip . -x "*.DS_Store" "node_modules/*"3. Configure Claude Code
Add the MCP server to your Claude Code configuration:
{
"mcpServers": {
"browser-mcp": {
"command": "node",
"args": ["/path/to/browser-mcp/server/index.js"],
"env": {
"NODE_ENV": "production"
}
}
}
}macOS/Linux:
Edit ~/.config/claude-desktop/claude_desktop_config.json
Windows:
Edit %APPDATA%/Claude/claude_desktop_config.json
Usage
1. Start the MCP Server
The server starts automatically when Claude Code launches, or manually:
cd server
npm startThe server will:
Listen on port 3000 for WebSocket connections
Provide health check endpoint at
http://localhost:3000/healthConnect to Claude Code via stdio
2. Connect Browser Extension
Open the Extension Popup
Click the Browser MCP Bridge icon in your toolbar
Configure Connection
Server URL should default to
ws://localhost:3000/mcpClick "Connect to Server"
Status should change to "Connected"
Verify Connection
Green status indicator shows successful connection
Extension will automatically reconnect if disconnected
3. Use Claude Code Tools
Once connected, Claude Code has access to these tools:
Page Inspection Tools
# Get complete page content and metadata
get_page_content
# Get structured DOM snapshot
get_dom_snapshot
# Execute JavaScript in page context
execute_javascript --code "document.title"
# Capture screenshot
capture_screenshotDeveloper Tools
# Get console messages
get_console_messages
# Get network requests
get_network_requests
# Get performance metrics
get_performance_metrics
# Get accessibility tree
get_accessibility_treeBrowser Management
# List all open tabs
get_browser_tabs
# Attach debugger for advanced inspection
attach_debugger --tabId 123
# Detach debugger
detach_debugger --tabId 1234. DevTools Panel
Open Chrome DevTools
Right-click on any page → "Inspect"
Or press
F12
Find MCP Bridge Panel
Look for "MCP Bridge" tab alongside Console, Network, etc.
Click to open the custom panel
Use Panel Features
Quick capture buttons for different data types
Real-time connection status
Message logging and debugging
Visual data display
Example Workflows
Web Development Debugging
Inspect Page Issues
# In Claude Code "Analyze this page for accessibility issues" # Uses get_accessibility_tree and get_page_contentPerformance Analysis
"Check this page's performance metrics and suggest optimizations" # Uses get_performance_metrics and get_network_requestsConsole Error Analysis
"Review the console errors and help me fix them" # Uses get_console_messages
Automated Testing Support
Form Testing
execute_javascript --code " const form = document.querySelector('form'); const inputs = form.querySelectorAll('input'); return Array.from(inputs).map(i => ({name: i.name, type: i.type})); "Visual Regression
capture_screenshot # Compare with baseline screenshots
Content Analysis
SEO Analysis
get_page_content --includeMetadata true # Analyze meta tags, headings, content structureContent Extraction
execute_javascript --code " return Array.from(document.querySelectorAll('article')).map(a => a.innerText); "
Configuration
Extension Settings
The extension popup allows you to:
Change WebSocket server URL
View connection statistics
Manually trigger data capture
Access DevTools panel
Server Configuration
Environment variables:
# WebSocket port (default: 3000)
PORT=3000
# Enable debug logging
DEBUG=true
# Maximum message size (bytes)
MAX_MESSAGE_SIZE=10485760Security Considerations
Local Connection Only - Server only accepts connections from localhost
Same-Origin Policy - Extension respects browser security policies
No Password Storage - No sensitive data is stored or transmitted
Minimal Permissions - Extension requests only necessary permissions
Troubleshooting
Extension Issues
Extension not loading:
# Check browser console for errors
# Verify all files are present in extension directory
# Ensure manifest.json is validConnection failures:
# Verify MCP server is running on port 3000
# Check WebSocket URL in extension popup
# Look for firewall blocking localhost:3000Server Issues
Server won't start:
# Check Node.js version (18.0.0+)
npm list # Verify dependencies installed
node --versionMCP connection fails:
# Verify Claude Code configuration
# Check server logs for errors
# Ensure stdio communication is workingCommon Fixes
Restart Everything
# Stop Claude Code # Kill server process # Disable/re-enable extension # Restart browser # Start server and Claude CodeClear Extension Storage
# In Chrome: chrome://extensions/ # Find extension → Details → Extension options # Clear stored dataReset Server Connection
cd server npm run dev # Use with --watch for debugging
Development
Extension Development
cd extension
# Watch for changes (if using build tools)
npm run dev
# Test in browser
# Make changes and reload extensionServer Development
cd server
# Development mode with auto-restart
npm run dev
# Debug mode with verbose logging
DEBUG=* npm startAdding New Tools
Add tool definition to server
ListToolsRequestSchemahandlerImplement tool logic in server
CallToolRequestSchemahandlerAdd browser-side handler in extension background.js
Test with Claude Code
API Reference
MCP Tools
Tool | Description | Parameters |
| Extract page HTML, text, metadata |
|
| Get structured DOM tree |
|
| Run JS in page context |
|
| Retrieve console logs |
|
| Get network activity |
|
| Take visual snapshot |
|
| Performance data |
|
| A11y tree structure |
|
| List all tabs | None |
| Enable advanced inspection |
|
| Disable debugger |
|
WebSocket Messages
The extension communicates with the server using structured WebSocket messages:
// Page content data
{
type: "browser-data",
source: "content-script",
tabId: 123,
url: "https://example.com",
data: { /* page content */ }
}
// Tool responses
{
type: "response",
action: "getPageContent",
tabId: 123,
data: { /* response data */ }
}
// Error messages
{
type: "error",
action: "getPageContent",
tabId: 123,
error: "Error message"
}License
MIT License - See LICENSE file for details.
Contributing
Fork the repository
Create feature branch
Make changes with tests
Submit pull request
Support
For issues and questions:
Check troubleshooting section above
Review browser console and server logs
Create GitHub issue with detailed information
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.