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 exposing 5 Chrome DevTools Protocol domains (Fetch, Emulation, Accessibility, Performance, CSS) with 38 tools for advanced browser automation and debugging.

README.md

cdp-extended-mcp

An MCP (Model Context Protocol) server that exposes 5 powerful Chrome DevTools Protocol domains that are missing from existing tools:

  1. Fetch — Intercept & modify HTTP requests mid-flight (mock APIs, block tracking, inject headers)
  2. Emulation — Device simulation (iPhone/Pixel/iPad presets, geolocation, timezone, dark mode, vision deficiencies)
  3. Accessibility — A11y tree inspection & automated auditing (missing labels, alt text, ARIA compliance)
  4. Performance — Runtime metrics, CPU profiling, heap snapshots, Core Web Vitals
  5. CSS — Computed styles, matched rules, font inspection, coverage tracking, live modification

38 Tools Available

Connection

| Tool | Description | |------|-------------| | connect_cdp | Connect to Chrome via WebSocket URL | | discover_targets | List available Chrome debugging targets | | disconnect_cdp | Disconnect from Chrome |

Fetch (Request Interception)

| Tool | Description | |------|-------------| | fetch_enable | Enable request interception with URL patterns | | fetch_disable | Disable interception | | fetch_continue | Continue paused request with optional modifications | | fetch_fulfill | Respond with custom/mock response | | fetch_fail | Fail a request with an error | | fetch_get_body | Get response body of intercepted request | | fetch_list_paused | List all paused requests |

Emulation (Device Simulation)

| Tool | Description | |------|-------------| | emulate_device | Emulate iPhone, Pixel, iPad, Galaxy, Desktop | | emulate_custom_device | Custom viewport, DPR, mobile mode | | emulate_geolocation | Fake geolocation to any coordinates | | emulate_timezone | Override timezone | | emulate_locale | Override locale for i18n testing | | emulate_user_agent | Override user agent string | | emulate_dark_mode | Toggle dark mode | | emulate_reduced_motion | Toggle reduced motion | | emulate_vision_deficiency | Simulate color blindness, blurred vision | | emulate_cpu_throttle | Throttle CPU for low-end device simulation | | emulate_touch | Toggle touch emulation | | emulate_clear_all | Reset all emulation overrides | | emulate_list_devices | List available device presets |

Accessibility

| Tool | Description | |------|-------------| | a11y_audit | Automated a11y audit (missing labels, alt text, etc.) | | a11y_tree | Get full accessibility tree | | a11y_query | Search a11y tree by role/name |

Performance

| Tool | Description | |------|-------------| | perf_metrics | Runtime performance metrics | | perf_web_vitals | Core Web Vitals with ratings | | perf_cpu_profile_start | Start CPU profiling | | perf_cpu_profile_stop | Stop profiling, get hotspot analysis | | perf_heap_snapshot | Take heap memory snapshot |

CSS

| Tool | Description | |------|-------------| | css_computed_style | Get computed styles (optionally filtered) | | css_matched_rules | Get all matching CSS rules | | css_background_colors | Background colors + font info | | css_force_pseudo | Force :hover, :focus, :active states | | css_fonts | Get actual rendered fonts | | css_media_queries | List all media queries | | css_coverage_start | Start CSS coverage tracking | | css_coverage_stop | Get used vs unused CSS report | | css_set_property | Live-modify CSS properties |

Quick Start

Install

npm install -g cdp-extended-mcp

Configure with Claude Code

Add to your Claude Code settings (~/.claude/settings.json):

{
  "mcpServers": {
    "cdp-extended": {
      "command": "cdp-extended-mcp"
    }
  }
}

Configure with Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "cdp-extended": {
      "command": "npx",
      "args": ["cdp-extended-mcp"]
    }
  }
}

Usage

  1. Launch Chrome with debugging enabled:
   /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
  1. Use discover_targets to find available pages
  2. Use connect_cdp with the WebSocket URL
  3. Use any of the 38 tools!

Works great alongside cdp-tools

This server is designed to complement the existing cdp-tools MCP server. Use cdp-tools for navigation, clicking, screenshots, and breakpoints. Use cdp-extended for the 5 domains cdp-tools doesn't cover.

Use Cases

  • API Mocking: Intercept fetch requests and return mock data — no backend needed
  • Mobile Testing: Emulate any device with one command
  • A11y Auditing: Find missing labels, alt text, and ARIA issues automatically
  • Performance Profiling: Get Core Web Vitals, CPU hotspots, and memory leaks
  • CSS Debugging: See exactly which rules apply, find unused CSS, check font rendering
  • i18n Testing: Switch timezone, locale, and language without system changes
  • Vision Accessibility: Test how your site looks with color blindness

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.