Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for VibeCheck bug reports. Gives AI assistants direct access to screen recordings, console logs, network requests, user actions, and web vitals — right inside your editor.

README.md

@vibecheck-mcp/mcp

MCP server for VibeCheck — connect AI assistants (Claude Code, Claude Desktop, Cursor, Windsurf, VS Code) to your bug reports, and let them record their own browser sessions as shareable bug reports.

📖 Full guide — features, installation, use cases → DOCS.md

🎬 Record browser sessions (new)

Give your AI agent a task in plain English — it drives a real browser on your machine while VibeCheck records everything, then returns a shareable link:

You:   Go to staging.myapp.com/cart, add a product and check the total
       updates. Record it and send me the link.

Agent: ⏺ Opening browser — recording started
       ⏺ Clicked: Add to cart
       ⏺ Validated: total updated to $42.00 ✓

       Recording uploaded to VibeCheck.
       Shareable link: https://app.vibecheck-qa.com/tracks/1783…

The link opens a full bug report: video of the session, console logs, network requests (with response bodies), and a labeled action timeline — all synced. Anyone can watch it, no account needed.

  • No AI inside — your assistant does the reasoning and clicking; this server is a recorded browser plus an uploader. No extra LLM costs.
  • Local browser — works against localhost dev servers and VPN-only staging. Uses your installed Chrome/Edge automatically (fresh isolated profile); auto-downloads a browser if neither exists.
  • 11 toolsbrowser_navigate, browser_snapshot, browser_click, browser_type, browser_press_key, browser_select_option, browser_hover, browser_scroll, browser_screenshot, browser_wait_for, browser_finish (uploads + returns the link).

Perfect for: "go validate this page", reproducing a bug from an existing report, proving a fix before a PR, smoke-testing a deploy.

Installation

Requirements

  • Node.js 18+
  • A browser — nothing to install if you have Google Chrome or Microsoft Edge (auto-detected). Otherwise one is auto-downloaded on first run (or pre-download: npx playwright install chromium)
  • A VibeCheck API key (recording only — the read tools below need no key):
  1. Sign in at app.vibecheck-qa.com
  2. Open the API Keys page (app.vibecheck-qa.com/api-keys) → Generate key
  3. The dialog gives you a ready-made setup: a copy-paste Claude Code command with your key already inside, plus one-click Add to Cursor / Add to VS Code buttons — use those and skip the manual configs below

Claude Code

claude mcp add vibecheck \
  -e VIBECHECK_API_KEY=vck_your_key_here \
  -- npx -y @vibecheck-mcp/mcp

Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\), then restart Claude Desktop:

{
  "mcpServers": {
    "vibecheck": {
      "command": "npx",
      "args": ["-y", "@vibecheck-mcp/mcp"],
      "env": { "VIBECHECK_API_KEY": "vck_your_key_here" }
    }
  }
}

Cursor

Add the same block to .cursor/mcp.json (or use the one-click Add to Cursor button on VibeCheck's API Keys page):

{
  "mcpServers": {
    "vibecheck": {
      "command": "npx",
      "args": ["-y", "@vibecheck-mcp/mcp"],
      "env": { "VIBECHECK_API_KEY": "vck_your_key_here" }
    }
  }
}

Windsurf

Add the same mcpServers block to ~/.codeium/windsurf/mcp_config.json.

VS Code

Add to .vscode/mcp.json (note the key is servers):

{
  "servers": {
    "vibecheck": {
      "command": "npx",
      "args": ["-y", "@vibecheck-mcp/mcp"],
      "env": { "VIBECHECK_API_KEY": "vck_your_key_here" }
    }
  }
}

Verify it works

Open a new session in your AI tool and paste:

Go to https://example.com, then finish the recording titled "Setup test"
and give me the link.

A browser window opens, and within ~15 seconds the agent replies with a .../tracks/... link. If the video plays — you're set. 🎉

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | VIBECHECK_API_KEY | For recording | Personal API key (vck_...) from the API Keys page | | VIBECHECK_API_URL | No | Override platform URL (default https://app.vibecheck-qa.com) | | VIBECHECK_HEADLESS | No | Set 1 to hide the browser window (CI) | | VIBECHECK_NO_CONDENSE | No | Set 1 to upload the full-length video instead of the condensed one |

Watchable videos

Recordings show a cursor that moves to every element the agent interacts with, a click ripple, and a caption describing each action (Click — Place order button), so anyone watching the video can follow what happened.

If ffmpeg is installed (brew install ffmpeg / apt install ffmpeg), the idle "agent think time" between actions is automatically cut out before upload — a 5-minute session typically becomes under a minute, with the console/network/action timeline re-synced to the shorter video. Without ffmpeg the full-length video is uploaded as-is.

🔍 Analyze bug reports

Paste a VibeCheck track URL and your AI pulls in the full debugging context — no API key needed:

| Tool | Description | Image? | |------|-------------|--------| | get_track | Full bug report — console logs, network, user actions, vitals | Yes (screenshots) | | analyze_track_errors | Focused error analysis — console errors + failed network requests | Yes (screenshots) | | get_track_network | Network deep-dive — failed requests, slow requests, summary table | No | | get_track_performance | Performance report — web vitals, navigation timing, assessment | No | | get_track_actions | User action timeline + auto-generated steps to reproduce | No |

get_track

Fetch and format a complete VibeCheck bug report.

Parameters:

  • url_or_id (required) — Track URL or ID
  • include (optional) — Sections to include: logs, network, actions, vitals, all

analyze_track_errors

Focused view of errors only — console errors with stack traces and failed network requests with response bodies.

Parameters:

  • url_or_id (required) — Track URL or ID

get_track_network

Deep analysis of network requests with failed/slow request detection.

Parameters:

  • url_or_id (required) — Track URL or ID
  • slow_threshold_ms (optional, default: 1000) — Threshold in ms to flag slow requests
  • status_filter (optional, default: all) — Filter: all, errors, success

get_track_performance

Web vitals analysis with ratings and optimization suggestions.

Parameters:

  • url_or_id (required) — Track URL or ID

get_track_actions

User action timeline with auto-generated steps to reproduce.

Parameters:

  • url_or_id (required) — Track URL or ID
  • action_types (optional) — Filter by type: click, input, scroll, navigation, etc.

Screenshot support

For screenshot tracks, get_track and analyze_track_errors return the screenshot image alongside the text report using MCP's ImageContent type. Video tracks return text data only (no video fetch).

Development

git clone https://github.com/kosbay/vibecheck-mcp.git
cd vibecheck-mcp
npm install
npm run build
npm start

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Observability servers.