agency-orchestrator vs everything
Side-by-side comparison to help you pick between these two MCP servers.
agency-orchestrator by jnMetaCode | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 859 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
agency-orchestrator · Summary
A multi-AI-role orchestration tool that enables complex task completion through collaboration of 211+ expert roles with zero-code YAML configuration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agency-orchestrator · Use cases
- Code review with parallel analysis of security, performance, and architectural aspects
- Business planning and feasibility analysis for startups and products
- Multi-step content creation with research, strategy, and execution planning
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
agency-orchestrator · Install
Installation
npm install -g agency-orchestratorMCP Server Setup
For Claude Code:
{
"mcpServers": {
"agency-orchestrator": {
"command": "npx",
"args": ["agency-orchestrator", "serve"]
}
}
}For Cursor:
{
"mcpServers": {
"agency-orchestrator": {
"command": "npx",
"args": ["agency-orchestrator", "serve"]
}
}
}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