🌐
GitHub
github.com › ChakshuGautam › react-devtools-mcp
GitHub - ChakshuGautam/react-devtools-mcp
Proof of concept for integrating React DevTools with Model Context Protocol (MCP).
Author   ChakshuGautam
🌐
GitHub
github.com › wimpywarlord › mcp-react-dev-tools
GitHub - wimpywarlord/mcp-react-dev-tools: MCP for React Dev Tools - Use directly inside cursor
This application is a powerful browser monitoring and interaction tool that enables AI-powered applications via Anthropic's Model Context Protocol (MCP) to capture and analyze browser data through a Chrome extension.
Author   wimpywarlord
Discussions

Devtools MCP is magic
Just wondering. How is your experience with GLM4.5? Do you having good results ? More on reddit.com
🌐 r/vibecoding
27
135
September 27, 2025
Possible support React Native DevTools
Is your feature request related to a problem? Please describe. I would like to connect this MCP to React Native DevTools, which is using headless Chrome Devtools with underlying implementation Chro... More on github.com
🌐 github.com
2
October 29, 2025
MCP Error: "could not connect to MCP server"
For those having issues with this, here is how I resolved it. Initial Setup: - Installed Node.js using nvm (Node Version Manager) via Homebrew - Made sure to install nvm first, then Node.js through nvm (order was important) Configuration File: - Located the proper config file path: `/Users/yourname/Library/Application Support/Claude/claude_desktop_config.json` - Had to handle spaces in the path name correctly (this was tricky!) Key Changes That Made It Work: - Used the full path to npx: `/Users/yourname/.nvm/versions/node/v23.3.0/bin/npx` - Added proper environment variables (PATH and NODE_PATH) - Made sure to use the correct Brave API key (we had to try between two different keys - the "Data for Search" one) - Created a clean JSON file directly in VS Code instead of using echo commands to avoid formatting issues Final Working Configuration: ```json { "mcpServers": { "brave-search": { "command": "/Users/shawngross/.nvm/versions/node/v23.3.0/bin/npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "YOUR_API_KEY", "PATH": "/Users/shawngross/.nvm/versions/node/v23.3.0/bin:/usr/local/bin:/usr/bin:/bin", "NODE_PATH": "/Users/shawngross/.nvm/versions/node/v23.3.0/lib/node_modules" } } } } ``` Important Steps After Changes: - Always fully quit Claude Desktop (Command+Q) - Restart the application - Verify the MCP server is running with "Brave Search MCP Server running on stdio" The key lesson was to be methodical and verify each component (Node.js installation, config file location, API key, and proper paths) step by step until we got it working. More on reddit.com
🌐 r/ClaudeAI
31
9
November 28, 2024
What MCP tools are you using?
If you're doing test automation, playwright MCP or octomind MCP great (depending on which one works best on your page). More on reddit.com
🌐 r/vibecoding
7
13
July 4, 2025
🌐
GitHub
github.com › igorzheludkov › react-native-ai-devtools
GitHub - igorzheludkov/react-native-ai-devtools · GitHub
claude mcp add rn-debugger --scope project -- npx react-native-ai-devtools
Starred by 33 users
Forked by 5 users
Languages   TypeScript 78.0% | JavaScript 21.8% | Shell 0.2%
🌐
GitHub
github.com › kalivaraprasad-gonapa › react-mcp
GitHub - kalivaraprasad-gonapa/react-mcp: react-mcp integrates with Claude Desktop, enabling the creation and modification of React apps based on user prompts · GitHub
react-mcp integrates with Claude Desktop, enabling the creation and modification of React apps based on user prompts - kalivaraprasad-gonapa/react-mcp
Starred by 67 users
Forked by 9 users
Languages   JavaScript 97.1% | Dockerfile 2.9%
🌐
GitHub
github.com › pnarayanaswamy › react-native-devtools-mcp
GitHub - pnarayanaswamy/react-native-devtools-mcp: MCP server for debugging React Native apps — screenshots, UI hierarchy, interactions, JS console, and more
Import createServer to get a pre-configured MCP server with all generic tools, then register your own: import { createServer } from "react-native-devtools-mcp"; const server = createServer({ name: "my-custom-mcp", version: "1.0.0" }); // Add your own tools on top of the 16 built-in ones server.tool("my_tool", "Does something custom", {}, async () => { return { content: [{ type: "text", text: "result" }] }; });
Author   pnarayanaswamy
🌐
GitHub
github.com › ohah › react-native-mcp
GitHub - ohah/react-native-mcp · GitHub
2 weeks ago - Install React Native MCP DevTools from the Marketplace, or in VS Code: Ctrl+Shift+X (Extensions) → search React Native MCP DevTools → Install. Gives you Console, Network, State, Renders, and Component Tree in the sidebar.
Author   ohah
🌐
GitHub
github.com › Phoenixrr2113 › debugger-mcp
GitHub - Phoenixrr2113/debugger-mcp: A comprehensive development companion tool that provides real-time debugging, code quality monitoring, and AI-enhanced insights for React/Next.js applications via the Model Context Protocol (MCP). · GitHub
A comprehensive development companion tool that provides real-time debugging, code quality monitoring, and AI-enhanced insights for React/Next.js applications via the Model Context Protocol (MCP). - Phoenixrr2113/debugger-mcp
Author   Phoenixrr2113
🌐
GitHub
github.com › sammcj › mcp-devtools
GitHub - sammcj/mcp-devtools: A modular MCP server that provides commonly used developer tools for AI coding agents · GitHub
Frontend React components · 🟠 · Agents as Tools - In addition to the above tools, MCP DevTools can provide access to AI agents as tools by integrating with external LLMs. Agent · Purpose · ENABLE_ADDITIONAL_TOOLS · Maturity · Claude Agent · Claude Code CLI Agent ·
Starred by 128 users
Forked by 21 users
Languages   Go 93.0% | Python 6.0%
Find elsewhere
🌐
GitHub
github.com › mcpc-tech › dev-inspector-mcp
GitHub - mcpc-tech/dev-inspector-mcp: AI-powered visual debugging for your React, Vue, Svelte, SolidJS, Preact & Next.js app via MCP and ACP · GitHub
// vite.config.ts +import DevInspector from '@mcpc-tech/unplugin-dev-inspector-mcp'; import react from '@vitejs/plugin-react'; // or vue(), svelte(), solid(), preact() export default { plugins: [ + DevInspector.vite({ + enabled: true, showInspectorBar: true, // Default: true. Set to false to hide the UI. + autoOpenBrowser: false, // Default: false. Automatically open browser when server starts. + // Disable Chrome DevTools integration (useful in CI/headless/cloud environments) + // disableChrome: true, }), react(), // or vue(), svelte(), solid(), preact() ], }; 📴 Disable Chrome DevTools integration: set disableChrome: true in plugin options or export DEV_INSPECTOR_DISABLE_CHROME=1.
Author   mcpc-tech
🌐
Reddit
reddit.com › r/vibecoding › devtools mcp is magic
r/vibecoding on Reddit: Devtools MCP is magic
September 27, 2025 -

https://developer.chrome.com/blog/chrome-devtools-mcp

Long story short - this is like playwright, but:
95% used context less
WAY smarter
allows your AI agent to seamlessly go through the whole testing processes of web development.
just get this started, and if you have any sort of bug - tell agent to use this MCP and ITS FLYING.

Just discovered this like 2 days ago, i've been extensively testing this - mainly using my main model - GLM4.5 - and honestly i can say - for any sort of web development it's amazing to just get the stuff done. Console logs - solved. Going through pages - no problem, solved. 500 errors? It'll collect the data itself, debug and resolve on it's own. And what's the most funny thing? Its a total context saver - as it uses so minor context amount surprisingly - to be honest i prefer to just tell GLM to use MCP instead of typing the whole prompt and stuff i'd want it to debug.

🌐
GitHub
github.com › WebMCP-org › chrome-devtools-quickstart
GitHub - WebMCP-org/chrome-devtools-quickstart: Quickstart demo for using Chrome DevTools MCP with WebMCP tools - AI-driven browser automation · GitHub
Chrome DevTools MCP · Browser automation package docs · @mcp-b/global · Core library for registering tools · MCP-B Extension · Chrome extension for multi-tab tool access · Examples · React, Angular, Rails, Phoenix LiveView, Vanilla JS · Live Demo · Try WebMCP without installing anything ·
Starred by 31 users
Forked by 7 users
Languages   JavaScript 58.8% | TypeScript 38.4% | CSS 2.0% | HTML 0.8%
🌐
GitHub
github.com › ChromeDevTools › chrome-devtools-mcp › issues › 498
Possible support React Native DevTools · Issue #498 · ChromeDevTools/chrome-devtools-mcp
October 29, 2025 - Is your feature request related to a problem? Please describe. I would like to connect this MCP to React Native DevTools, which is using headless Chrome Devtools with underlying implementation Chrome DevTools Protocol (CDP) from its Herm...
Author   lukas-preply
🌐
npm
npmjs.com › package › chrome-devtools-mcp
chrome-devtools-mcp - npm
1 week ago - # Either MCP only: gemini mcp add chrome-devtools npx chrome-devtools-mcp@latest # Or as a Gemini extension (MCP+Skills): gemini extensions install --auto-update https://github.com/ChromeDevTools/chrome-devtools-mcp
      » npm install chrome-devtools-mcp
    
Published   Mar 18, 2026
Version   0.20.2
Author   Google LLC
🌐
GitHub
github.com › WebMCP-org
MCP-B · GitHub
# Install the core package npm install @mcp-b/global # Or use React hooks npm install @mcp-b/react-webmcp
🌐
LobeHub
lobehub.com › mcp › chakshugautam-react-devtools-mcp
React DevTools MCP POC | MCP Servers
November 27, 2025 - Proof of concept for integrating React DevTools with Model Context Protocol (MCP). The MCP server starts a react-devtools-core WebSocket server on port 8097 and communicates via stdio.
🌐
DEV Community
dev.to › copilotkit › turn-your-react-app-into-an-mcp-client-in-minutes-269n
Turn Your React App Into an MCP Client in Minutes - DEV Community
Now you can use a chat interface to talk to any MCP-compatible server, right from your React app, with no agent framework required. With one command, you can start talking to MCP servers locally, from your own Next.js app. ... Asana – Send blog ideas as tasks, assign them to myself, and set due dates. Typefully – Pull blog titles and save them as draft tweets. ... The code is open source, and contributions are welcome. GitHub: https://github.com/CopilotKit/copilotkit-mcp-demo
Published   July 21, 2025
🌐
GitHub
github.com › jazelly › vite-react-mcp
GitHub - jazelly/vite-react-mcp: Vite plugin to help LLMs to interact with your React App · GitHub
At this point, you already can access window.__VITE_REACT_MCP_TOOLS__ to use the tools in Developer panel on your browser.
Starred by 141 users
Forked by 18 users
Languages   TypeScript 72.8% | JavaScript 24.3% | HTML 1.8% | CSS 1.1%
🌐
GitHub
github.com › facebook › react-native-devtools-frontend
GitHub - facebook/react-native-devtools-frontend: Source code for the React Native DevTools frontend, based on Chrome DevTools · GitHub
Check out the project documentation for instructions to set up, use, and maintain a DevTools front-end checkout, as well as design guidelines, and architectural documentation.
Starred by 65 users
Forked by 23 users
Languages   TypeScript 88.2% | JavaScript 5.7% | CSS 3.0% | HTML 1.4% | Python 0.8% | C++ 0.5%
🌐
GitHub
github.com › vercel › next-devtools-mcp
GitHub - vercel/next-devtools-mcp: Next.js Development for Coding Agent · GitHub
Next.js Development for Coding Agent. Contribute to vercel/next-devtools-mcp development by creating an account on GitHub.
Starred by 698 users
Forked by 49 users
Languages   TypeScript 89.8% | JavaScript 10.2%