next-devtools-mcp vs stealth-browser-mcp
Side-by-side comparison to help you pick between these two MCP servers.
next-devtools-mcp by vercel | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 747 | ★ 643 |
| 30d uses | — | — |
| Score | 54 | 54 |
| Official | — | — |
| Categories | Developer ToolsBrowser AutomationAI / LLM Tools | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | 2 mo ago | this month |
next-devtools-mcp · Summary
Next.js DevTools MCP server providing development tools and utilities for Next.js applications.
stealth-browser-mcp · Summary
Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.
next-devtools-mcp · Use cases
- Diagnose runtime errors and issues in Next.js applications
- Automate browser testing of Next.js applications using Playwright
- Search and retrieve official Next.js documentation and guides
- Upgrade and migrate Next.js applications to newer versions
stealth-browser-mcp · Use cases
- Automating web scraping on protected websites with antibot measures
- Creating UI clones of websites through AI chat commands
- Intercepting and modifying network traffic in real-time
next-devtools-mcp · Install
Installation
Using add-mcp CLI:
npx add-mcp next-devtools-mcp@latestManual installation:
{
"mcpServers": {
"next-devtools": {
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
}
}
}stealth-browser-mcp · Install
# Clone and install
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv
# Activate virtual environment
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
pip install -r requirements.txt**Claude Desktop configuration:**
{
"mcpServers": {
"stealth-browser-mcp": {
"command": "/path/to/stealth-browser-mcp/venv/bin/python",
"args": ["/path/to/stealth-browser-mcp/src/server.py"]
}
}
}