This skill enables automated Chrome browser testing and performance analysis using the Chrome DevTools Protocol (CDP) via the chrome-devtools-mcp server. It provides access to 27 professional-grade tools for web application testing, performance measurement, accessibility validation, and browser automation.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"chrome-devtools": {
"args": [
"chrome-devtools-mcp@latest",
"--channel=stable",
"--isolated=true",
"--viewport=1920x1080"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Give Claude Code eyes for your frontend. No more blind debugging where Claude guesses about your UI, you take screenshots, and you go back and forth hoping it understands what's broken. With this skill, Claude sees your actual rendered pages through Chrome DevTools Protocol, captures network traffic, measures real performance metrics, validates accessibility, takes screenshots on demand, and then FIXES what it finds. It's like giving Claude vision for web applications - except way better because
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / browser
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for Cc_chrome_devtools_mcp_skill and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Give Claude Code eyes for your frontend. No more blind debugging where Claude guesses about your UI, you take screenshots, and you go back and forth hoping it understands what's broken. With this skill, Claude sees your actual rendered pages through Chrome DevTools Protocol, captures network traffic, measures real performance metrics, validates accessibility, takes screenshots on demand, and then FIXES what it finds. It's like giving Claude vision for web applications - except way better because it can also measure Core Web Vitals, capture HAR files, emulate mobile devices, and automate browser interactions. Traditional frontend debugging is dead. This is the future. Even Mike Dion would be impressed.
claude
/plugin marketplace add https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill
/plugin install cc_chrome_devtools_mcp_skill
Clone the repository:
git clone https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill
Choose where to install:
For all projects (personal skills directory):
cp -r cc_chrome_devtools_mcp_skill ~/.claude/skills/
For current project only (project-specific):
cp -r cc_chrome_devtools_mcp_skill .claude/skills/
IMPORTANT: This skill requires the chrome-devtools-mcp server to be installed and configured in your Claude Code MCP settings.
# Add the MCP server to Claude Code
claude mcp add chrome-devtools npx chrome-devtools-mcp@latest
Add this to your Claude Code MCP configuration (usually ~/.claude/mcp_settings.json):
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": [
"chrome-devtools-mcp@latest",
"--channel=stable",
"--isolated=true",
"--viewport=1920x1080"
]
}
}
}
Security Note: The --isolated=true flag creates a temporary browser profile that's automatically cleaned up after testing. Highly recommended for security.
Ask Claude Code:
"List available MCP servers"
You should see chrome-devtools in the list.
The skill activates when you ask Claude Code to test, analyze, or debug frontend applications:
"Test the performance of https://example.com"
"Measure Core Web Vitals for my landing page"
"Run a performance trace and identify bottlenecks"
"Show Mike Dion how fast this page loads"
"Check accessibility issues on my login form"
"Validate WCAG compl
... [View full README on GitHub](https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill#readme)