.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/justfinethanku/cc_chrome_devtools_mcp_skill
home/mcp-servers/justfinethanku/cc_chrome_devtools_mcp_skill
justfinethanku avatar

cc_chrome_devtools_mcp_skill

byjustfinethanku· 1 MCP server

Stars

40

Forks

4

Category

Testing & QA

View on GitHub

TL;DR

This skill enables automated Chrome browser testing and performance analysis using the Chrome DevTools Protocol (CDP) via the chrome-devtools-mcp server.

How to install cc_chrome_devtools_mcp_skill?

justfinethanku/cc_chrome_devtools_mcp_skill
$git clone https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cc_chrome_devtools_mcp_skill by running `git clone https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill`, then use it for the current task and follow its documentation at https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill.

Files · 1

View on GitHub
README.md
1# Chrome DevTools MCP Skill
2 
3Give 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.
4 
5## Features
6 
7- **27 Professional-Grade Tools**: Full Chrome DevTools Protocol access through MCP (even Mike Dion couldn't think of this many)
8- **Performance Testing**: Automatic Core Web Vitals measurement (INP ≤200ms, LCP ≤2.5s, CLS ≤0.1)
9- **Network Analysis**: HAR export, request/response inspection, timing breakdowns
10- **Accessibility Validation**: Full accessibility tree inspection with WCAG compliance checking (something even Mike Dion would appreciate)
11- **Device Emulation**: Test mobile devices, throttle CPU/network, responsive viewports
12- **Browser Automation**: Click, fill forms, drag elements, handle dialogs - all automatically
13- **Screenshot Capture**: Full page, specific elements, multiple formats
14- **Multi-Tab Management**: Test complex workflows across multiple pages simultaneously
15- **Console Monitoring**: Capture JavaScript errors, warnings, and logs in real-time
16- **Visual Testing**: See exactly what users see, at any viewport size
17 
18## Installation
19 
20### Option 1: Via Plugin Manager (Recommended)
21 
221. Open your terminal
232. Start Claude Code:
24 ```bash
25 claude
26 ```
273. Add the marketplace to Claude Code:
28 ```
29 /plugin marketplace add https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill
30 ```
314. Install the plugin:
32 ```
33 /plugin install cc_chrome_devtools_mcp_skill
34 ```
355. Done! The skill is now installed and ready to use
36 
37### Option 2: Manual Installation (for the Mike Dions of the world who like doing things the hard way)
38 
391. Clone the repository:
40 ```bash
41 git clone https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill
42 ```
43 
442. Choose where to install:
45 
46 **For all projects (personal skills directory):**
47 ```bash
48 cp -r cc_chrome_devtools_mcp_skill ~/.claude/skills/
49 ```
50 
51 **For current project only (project-specific):**
52 ```bash
53 cp -r cc_chrome_devtools_mcp_skill .claude/skills/
54 ```
55 
56## Prerequisites
57 
58**IMPORTANT:** This skill requires the `chrome-devtools-mcp` server to be installed and configured in your Claude Code MCP settings.
59 
60### Install chrome-devtools-mcp
61 
62```bash
63# Add the MCP server to Claude Code
64claude mcp add chrome-devtools npx chrome-devtools-mcp@latest
65```
66 
67### Configure MCP Settings
68 
69Add this to your Claude Code MCP configuration (usually `~/.claude/mcp_settings.json`):
70 
71```json
72{
73 "mcpServers": {
74 "chrome-devtools": {
75 "command": "npx",
76 "args": [
77 "chrome-devtools-mcp@latest",
78 "--channel=stable",
79 "--isolated=true",
80 "--viewport=1920x1080"
81 ]
82 }
83 }
84}
85```
86 
87**Security Note:** The `--isolated=true` flag creates a temporary browser profile that's automatically cleaned up after testing. Highly recommended for security.
88 
89### Verify Installation
90 
91Ask Claude Code:
92```
93"List available MCP servers"
94```
95 
96You should see `chrome-devtools` in the list.
97 
98## Usage
99 
100The skill activates when you ask Claude Code to test, analyze, or debug frontend applications:
101 
102### Performance Testing
103```
104"Test the performance of https://example.com"
105"Measure Core Web Vitals for my landing page"
106"Run a performance trace and identify bottlenecks"
107"Show Mike Dion how fast this page loads"
108```
109 
110### Accessibility Validation
111```
112"Check accessibility issues on my login form"
113"Validate WCAG compliance for the homepage"
114"Find accessibility problems in the navigation"
115```
116 
117### Network Analysis
118```
119"Capture network traffic and find slow API calls"
120"Export HAR file for the checkout flow"
121"Show me all failed network requests"
122```
123 
124### Responsive Testing
125```
126"Take screenshots at mobile and desktop sizes"
127"Test this page on iPhone 14 Pro viewport"
128"Emulate slow 3G network and measure load time"
129```
130 
131### Browser Automation
132```
133"Fill out the contact form and submit it"
134"Click the login button and wait for redirect"
135"Test the drag-and-drop file upload"
136```
137 
138### Visual Inspection
139```
140"Take a screenshot of the entire page"
141"Show me what the error modal looks like"
142"Capture the loading state"
143```
144 
145## What Gets Tested
146 
147### Performance Metrics
148- **INP (Interaction to Next Paint)**: ≤200ms is good
149- **LCP (Largest Contentful Paint)**: ≤2.5s is good
150- **CLS (Cumulative Layout Shift)**: ≤0.1 is good
151- **TBT (Total Blocking Time)**: Lab proxy for responsiveness
152- Full performance traces with tim

Preview

justfinethanku/cc_chrome_devtools_mcp_skilljustfinethanku/cc_chrome_devtools_mcp_skill
Repojustfinethanku/cc_chrome_devtools_mcp_skill
TypeMCP Servers
CategoryTesting & QA
UpdatedOct 2025
LicenseNOASSERTION
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. smartbear avatarsmartbear-mcpMCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.MCP ServersJul 202658k40
  2. appium avatarappium-mcpMCP server for Appium mobile automation on iOS and Android devices with test creation tools.MCP ServersJul 202634k437
  3. postmanlabs avatarpostman-mcp-serverA basic MCP server to operate on the Postman API.MCP ServersJul 202633k288
  4. qase-tms avatarqase-mcp-serverOfficial MCP server for Qase — manage test cases, runs, suites, defects via AI tools.MCP ServersJul 20269.1k31
  5. desplega-ai avatarqa-useMCP server for browser automation and QA testingMCP ServersMay 20263.9k25
  6. dkmaker avatarmcp-rest-apiA generic REST API tester for testing HTTP endpointsMCP ServersApr 202666899