everything vs next-devtools-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | next-devtools-mcp by vercel | |
|---|---|---|
| Stars | ★ 85,748 | ★ 747 |
| 30d uses | — | — |
| Score | 77 | 54 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsBrowser AutomationAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
next-devtools-mcp · Summary
Next.js DevTools MCP server providing development tools and utilities for Next.js applications.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingnext-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"]
}
}
}