MCP Catalogs
Home

everything vs swarmvault

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
swarmvault
by swarmclawai
Stars★ 85,748★ 454
30d uses
Score7751
Official
Categories
Developer ToolsAI / LLM ToolsOther
Knowledge GraphAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

swarmvault · Summary

SwarmVault is an MCP server that turns documents into a local knowledge graph with RAG capabilities.

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

swarmvault · Use cases

  • Personal knowledge management as a second brain
  • Research documentation and analysis
  • Code documentation and AI-assisted development

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

swarmvault · Install

Install

CLI

npm install -g @swarmvaultai/cli

Add to Claude Desktop

Create or edit claude_desktop_config.json:

{
  "mcpServers": {
    "swarmvault": {
      "command": "npx",
      "args": ["@swarmvaultai/cli", "mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.