everything vs flywheel-memory
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | flywheel-memory by velvetmonkey | |
|---|---|---|
| Stars | ★ 85,748 | ★ 44 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Knowledge GraphProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
flywheel-memory · Summary
Local-first MCP server that provides AI agents with a knowledge graph over Obsidian vaults.
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
flywheel-memory · Use cases
- AI assistants searching across personal knowledge bases with contextual understanding
- Automated note management with wikilink suggestions and entity linking
- Policy-based vault automation for recurring tasks and follow-ups
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-everythingflywheel-memory · Install
Quick Install
- Install as an Agent Skill:
``bash npx -y skills add velvetmonkey/flywheel-memory -g ``
- Wire the MCP server:
``bash bash <(curl -fsSL https://raw.githubusercontent.com/velvetmonkey/flywheel-memory/main/skills/flywheel/scripts/install.sh) ``
- Restart your client from your vault directory.
Manual MCP Configuration
Add to your .mcp.json:
{
"mcpServers": {
"flywheel": {
"command": "npx",
"args": ["-y", "@velvetmonkey/flywheel-memory"]
}
}
}