everything vs context-engineering
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | context-engineering by timothywarner-org | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
context-engineering · Summary
Production-ready MCP server implementing semantic memory with hybrid RAG and CoALA memory tiers for AI assistants.
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-engineering · Use cases
- Building AI assistants with long-term memory capabilities
- Implementing semantic memory and hybrid RAG systems
- Developing context-aware AI applications using MCP protocol
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-everythingcontext-engineering · Install
Installation
Prerequisites
- Python 3.13 (pinned in
.python-version) - Node.js 20+ (for Lab 01 and MCP Inspector)
- [uv](https://docs.astral.sh/uv/) package manager (recommended)
- Claude Desktop or Claude Code
Option 1: Hello MCP Lab (Beginner)
git clone https://github.com/timothywarner-org/context-engineering.git
cd context-engineering/labs/lab-01-hello-mcp/starter
npm install && npm startOption 2: WARNERCO Schematica (Full Application)
cd src/warnerco/backend
uv sync
uv run uvicorn app.main:app --reload # HTTP server
uv run warnerco-mcp # MCP stdio serverClaude Desktop Configuration
{
"mcpServers": {
"warnerco": {
"command": "uv",
"args": ["run", "warnerco-mcp"],
"cwd": "C:/github/context-engineering/src/warnerco/backend"
}
}
}