its-over-9k vs everything
Side-by-side comparison to help you pick between these two MCP servers.
its-over-9k by Bumblebiber | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
its-over-9k · Summary
Persistent memory and agent lifecycle framework for Claude Code with MCP tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
its-over-9k · Use cases
- Multi-device AI development workflow where context persists across machines
- Long-term projects requiring AI to remember previous decisions and mistakes
- Team collaboration with shared company memory alongside personal memory
- Automating documentation through AI that understands project context
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
its-over-9k · Install
Installation
- Install globally:
npm install -g its-over-9k- Run the interactive installer:
npx hmem init- For Claude Desktop, add to
~/.claude/.mcp.json:
{
"mcpServers": {
"hmem": {
"command": "/absolute/path/to/node",
"args": ["/absolute/path/to/its-over-9k/dist/mcp-server.js"],
"env": {
"HMEM_PROJECT_DIR": "/home/yourname/.hmem",
"HMEM_AGENT_ID": "DEVELOPER"
}
}
}
}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