muse-brain vs everything
Side-by-side comparison to help you pick between these two MCP servers.
muse-brain by falcoschaefer99-eng | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 15 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
muse-brain · Summary
Relational memory substrate for AI agents with 33 MCP tools, identity continuity, and self-hosted persistence.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
muse-brain · Use cases
- Personal AI assistant with memory continuity across sessions
- Creative collaboration between specialized AI agents
- Autonomous task management with identity persistence
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
muse-brain · Install
Quick Start
**Prerequisites (cloud deploy):** Node.js 18+, Cloudflare account, Neon Postgres database **SQLite local/self-host mode:** Node.js 22+
# Clone and install
git clone https://github.com/falcoschaefer99-eng/muse-brain.git
cd muse-brain/muse-brain
npm install
# Configure your worker
cp wrangler.jsonc.example wrangler.jsonc
# Edit: set your worker name and Hyperdrive ID
# Set secrets
npx wrangler secret put API_KEY # a long random string
npx wrangler secret put DATABASE_URL # your Neon connection string
# Deploy
npm run deploy**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"muse-brain": {
"command": "npx",
"args": ["muse-brain"],
"env": {
"DATABASE_URL": "your-database-url",
"API_KEY": "your-api-key"
}
}
}
}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