
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
birdeatsbug-mcp-server
Advanced tools
MCP server for BirdeatsBug — extracts console logs, network logs, and video frames from bug reports for AI-powered root-cause analysis
An MCP (Model Context Protocol) server that connects AI assistants to BirdeatsBug bug reports — extracting console logs, network logs, and video frames for deep, AI-powered root-cause analysis.
| Tool | Description |
|---|---|
inspect_birdeatsbug_report | Metadata, access state, artifact counts |
get_birdeatsbug_console_logs | Console entries (level, message, timestamp) |
get_birdeatsbug_network_logs | Network requests (method, URL, status, duration) |
get_birdeatsbug_video_frames | JPEG frames extracted from the bug recording for vision AI |
generate_birdeatsbug_report | All-in-one: title, description, timeline, errors, failures, and video frames |
npx birdeatsbug-mcp-server
npm install -g birdeatsbug-mcp-server
birdeatsbug-mcp-server
Note: On first run, the postinstall script installs the Chromium browser (~200 MB). This only happens once.
Add to your global MCP config at ~/Library/Application Support/Code/User/mcp.json (macOS):
{
"servers": {
"birdeatsbug": {
"type": "stdio",
"command": "npx",
"args": ["-y", "birdeatsbug-mcp-server"]
}
}
}
Or add to a workspace's .vscode/mcp.json:
{
"servers": {
"birdeatsbug": {
"type": "stdio",
"command": "npx",
"args": ["-y", "birdeatsbug-mcp-server"]
}
}
}
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"birdeatsbug": {
"command": "npx",
"args": ["-y", "birdeatsbug-mcp-server"]
}
}
}
Restart Claude Desktop after saving.
Each tool accepts a url pointing to any app.birdeatsbug.com/... report URL.
Quick start — full analysis:
"Use generate_birdeatsbug_report on https://app.birdeatsbug.com/sessions/YOUR_SESSION_ID"
Video frame analysis with focus on a specific moment:
"Use get_birdeatsbug_video_frames on https://app.birdeatsbug.com/sessions/YOUR_SESSION_ID with focusTimeSec 8"
generate_birdeatsbug_report parameters| Parameter | Default | Description |
|---|---|---|
url | required | BirdeatsBug report URL |
frameCount | 16 | Number of video frames to extract (max 30) |
focusTimeSec | auto | Timestamp (seconds) to cluster frames around. Auto-detected from first error if omitted |
focusWindowSec | 4 | Window width (seconds) around the focus timestamp |
logLimit | 100 | Max console/network log entries to include |
Most sessions require login. To access private reports, generate a Playwright storage state with your logged-in cookies and pass it via environment variable:
BIRDEATSBUG_STORAGE_STATE=/path/to/storageState.json npx birdeatsbug-mcp-server
Or in your MCP config:
{
"servers": {
"birdeatsbug": {
"type": "stdio",
"command": "npx",
"args": ["-y", "birdeatsbug-mcp-server"],
"env": {
"BIRDEATSBUG_STORAGE_STATE": "/path/to/storageState.json"
}
}
}
}
playwright install chromium)ffmpeg-static — no system install needed)MIT
FAQs
MCP server for BirdeatsBug — extracts console logs, network logs, and video frames from bug reports for AI-powered root-cause analysis
The npm package birdeatsbug-mcp-server receives a total of 6 weekly downloads. As such, birdeatsbug-mcp-server popularity was classified as not popular.
We found that birdeatsbug-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.