MCP Catalogs
Home

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
Score3177
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit11 mo agothis 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"]
    }
  }
}
  1. Initialize your project: npx @noanswer/context-compose init
  2. Create context files in .contextcompose/ directory
  3. 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
Comparison generated from public README + GitHub signals. Last updated automatically.