dreamgraph vs everything
Side-by-side comparison to help you pick between these two MCP servers.
dreamgraph by mmethodz | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 82 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
dreamgraph · Summary
DreamGraph is a graph-first cognitive layer that builds a persistent knowledge graph to reason about code architecture.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
dreamgraph · Use cases
- Repository architecture understanding across multi-repo systems
- Cognitive reasoning for code changes and documentation generation
- Persistent knowledge maintenance in AI-assisted development
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
dreamgraph · Install
Install from source
**Windows (PowerShell):**
git clone https://github.com/mmethodz/dreamgraph.git
cd dreamgraph
./scripts/install.ps1 -Force**Linux / macOS (Bash):**
git clone https://github.com/mmethodz/dreamgraph.git
cd dreamgraph
bash scripts/install.sh --forceFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"dreamgraph": {
"command": "dg",
"args": ["mcp"]
}
}
}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