context-compose-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
context-compose-mcp by lazylagom | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
context-compose-mcp · Summary
Context Compose MCP server enables task-specific context composition for LLM interactions using YAML-based contexts.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
context-compose-mcp · Use cases
- Frontend development with React components using expert personas and TypeScript rules
- Backend API development with security guidelines and clean code principles
- Code reviews with standardized checklists and architecture expert perspectives
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
context-compose-mcp · Install
{
"mcpServers": {
"context-compose": {
"command": "npx",
"args": ["-y", "@noanswer/context-compose@latest"]
}
}
}- Initialize your project:
npx @noanswer/context-compose init - Create context files in
.contextcompose/directory - Start a context:
npx @noanswer/context-compose start-context <context-name>
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