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., "@console-bridgeShow recent errors from all tabs"
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.
console-bridge
Give your AI assistant access to browser console logs
Capture logs from all tabs, search errors, and equip your AI with project-specific debugging skills.
Quick Start ยท Features ยท Tools ยท Config
Why console-bridge?
1. ๐ Passive & Always-On No need to launch a special browser instance or connect to specific tabs. console-bridge captures everything in the background.
2. ๐ง Teachable (Project Skills) Define custom debugging workflows in Markdown. Your AI reads them to understand how to debug your specific application.
3. ๐ Context Efficient Stop dumping massive log files. Search, filter, and fetch only the relevant lines to save tokens and reduce noise.
console-bridge | Browser automation tools | |
Capture mode | Passive, always on | On-demand, explicit connect |
Tab coverage | All tabs simultaneously | Single tab at a time |
Log storage | 10K logs with TTL | None |
Search | Regex, keywords, time range | Not supported |
Skills | Custom debugging skills (.md) | Generic page access |
Use case | Debugging | UI automation |
Best for: "My app is throwing errors, help me debug" workflows.
Related MCP server: Metro Logs MCP
Quick Start
console-bridge requires two components: a browser extension (captures logs) and an MCP server (stores/queries logs).
1. Install MCP Server
Standard config (works with most MCP clients):
{
"mcpServers": {
"console-bridge": {
"command": "npx",
"args": ["-y", "console-bridge-mcp@latest"]
}
}
}claude mcp add console-bridge -s user -- npx -y console-bridge-mcp@latestOr add to ~/.claude.json:
{
"mcpServers": {
"console-bridge": {
"command": "npx",
"args": ["-y", "console-bridge-mcp@latest"]
}
}
}Add to your VS Code settings or use the CLI:
code --add-mcp '{"name":"console-bridge","command":"npx","args":["-y","console-bridge-mcp@latest"]}'Follow Windsurf MCP documentation. Use the standard config above.
Add the standard config to your MCP configuration file. See MCP documentation for client-specific instructions.
2. Install Browser Extension
Download
console-bridge-ext-v*.zipfrom the latest releaseUnzip to a permanent location (e.g.,
~/.console-bridge-extension)Open Chrome โ
chrome://extensionsEnable "Developer mode" (toggle in top right)
Click "Load unpacked" โ select the unzipped folder
Click the extension icon โ verify it shows "Connected"
3. Verify Installation
Restart your MCP client, then try:
Show me recent console errorsIf you see log data, you're all set!
Features
Log Capture & Analysis
Logs stream continuously from all browser tabs to the MCP server. Filter by level, tab, URL pattern, or time range.
Show error logs from the last 5 minutes
Show logs from localhost:3000
Tail logs from the current tabPowerful Search
Regex and keyword search with context lines, AND/OR logic, and exclusions.
Search for "failed" OR "error" excluding "expected"
Search for /api\/users\/\d+/ with 3 lines of contextSmart Tab Suggestions
AI-assisted tab ranking based on your project context โ ports, domains, URL patterns.
Suggest which tab is my Next.js appSession Scoping
Focus on logs from the current navigation only, ignoring stale logs from before the last page refresh.
Show errors from current session onlyJS Execution & DOM Queries
Run JavaScript in page context or query DOM elements directly.
Execute: window.featureFlags.enableDebug = true
Query DOM for '.error-message' elementsOne-Click Cursor Integration
Click "Open in Cursor" in the extension popup to instantly open Cursor with a context-aware prompt to analyze the current tab's logs.
๐ง Project Skills (Context for AI)
Teach your AI assistant how to debug your specific project. Create a .console-bridge/ directory in your project root and add Markdown files with debugging playbooks.
Why use Skills?
Onboard AI instantly: Define complex debugging flows once, use them forever.
Share knowledge: Commit your debugging guides so every team member's AI assistant knows them.
Context-aware: The AI discovers available skills automatically.
Example:
Create .console-bridge/auth-debug.md:
---
title: Debug Authentication Flow
description: Steps to diagnose login failures
---
1. Filter logs for "AuthService"
2. Check network requests to /api/login
3. Verify JWT token in local storageUsage:
List available debugging skills
Load the auth debugging skillMCP Tools
Tool | Purpose |
| List all tabs or get smart suggestions based on project context |
| List, get single log, or tail with filtering (level, tab, URL, time) |
| Regex or keyword search with context lines and exclusions |
| Quick summary of recent errors, warnings, and patterns |
| Run JavaScript in page context |
| Query DOM elements by CSS selector |
| List project-specific debugging playbooks |
| Load a specific debugging skill |
Configuration
Environment variables:
CONSOLE_MCP_PORT=9847 # WebSocket port
CONSOLE_MCP_DISCOVERY_PORT=9846 # HTTP discovery port
CONSOLE_MCP_MAX_LOGS=10000 # Max logs in memory
CONSOLE_MCP_LOG_TTL_MINUTES=60 # Auto-cleanup (0 = disable)Architecture
โโโโโโโโโโโโโโโโโโโ WebSocket โโโโโโโโโโโโโโโโโโโ stdio โโโโโโโโโโโโโโโโโโโ
โ โ (port 9847) โ โ โ โ
โ Browser Ext. โ โโโโโโโโโโโโโโโโโโถ โ MCP Server โ โโโโโโโโโโโโโโโโถ โ AI Assistant โ
โ (all tabs) โ log batches โ (stores/query) โ MCP protocol โ (Cursor/Claude) โ
โ โ โ โ โ โ
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ
โ โ
โ captures console.* โ in-memory storage
โ intercepts errors โ filtering engine
โ sanitizes credentials โ search engine
โ โData flow:
Extension content script intercepts
console.log/warn/error/debugLogs are batched (50 logs/100ms) and sent via WebSocket
Server stores logs in-memory with configurable TTL
MCP tools query and analyze logs on demand
Development
npm install && npm run build
npm run dev:server # Hot reload server
npm run dev:extension # Hot reload extension
npm test # Run testsProject Structure
packages/
โโโ server/ # MCP server + WebSocket receiver
โโโ extension/ # Chrome extension (content script + popup)
โโโ shared/ # Shared types and Zod schemasLicense
MIT
This server cannot be installed
Maintenance
Latest Blog Posts
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/vltansky/console-bridge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
