claude-dev-suite vs everything
Side-by-side comparison to help you pick between these two MCP servers.
claude-dev-suite by claude-dev-suite | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 15 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
claude-dev-suite · Summary
A comprehensive AI development toolkit extending Claude Code with specialized agents, MCP servers, and visual orchestration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
claude-dev-suite · Use cases
- Extend Claude Code with specialized MCP tools for database management, Docker operations, and API testing
- Use the visual dashboard to orchestrate multi-agent development tasks with real-time streaming updates
- Generate code from specifications using the built-in code generator with AI refinement
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
claude-dev-suite · Install
Installation
Quick Start
# Clone Dev-Suite
git clone https://github.com/claude-dev-suite/claude-dev-suite.git
cd claude-dev-suite
# Initialize your project
./init-project.sh /path/to/your-projectClaude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"dev-suite": {
"command": "node",
"args": ["/path/to/claude-dev-suite/packages/dashboard-bridge/dist/index.js"]
}
}
}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-everything