everything vs plan-cascade
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | plan-cascade by Taoidle | |
|---|---|---|
| Stars | ★ 85,748 | ★ 80 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Rust |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
plan-cascade · Summary
Plan Cascade MCP server enables cascading development workflows by breaking down complex projects into parallel executable tasks with AI agents.
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
plan-cascade · Use cases
- Decompose large software projects into manageable parallel tasks with clear documentation
- Automated implementation of user authentication systems with quality gates
- Multi-LLM orchestration for feature development across different AI providers
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-everythingplan-cascade · Install
Installation
As Claude Desktop Plugin
claude plugins install plan-cascadeVia MCP Server
Add to your Claude Desktop configuration:
{
"mcpServers": {
"plan-cascade": {
"command": "uv",
"args": ["run", "python", "-m", "plan_cascade.mcp_server"],
"env": {
"PYTHONPATH": "/path/to/plan-cascade"
}
}
}
}Python CLI
pip install plan-cascadeDesktop Application
See [desktop/README.md](./desktop/README.md) for the Tauri-based desktop application installation.