MCP Catalogs
Home

everything vs vestige

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

everything
by modelcontextprotocol
vestige
by samvallad33
Stars★ 85,748★ 531
30d uses
Score7753
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsKnowledge Graph
LanguageTypeScriptRust
Last committhis monththis month

everything · Summary

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

vestige · Summary

Cognitive memory for AI agents with FSRS-6 spaced repetition, 29 brain modules, and a 3D visualization dashboard.

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

vestige · Use cases

  • Giving AI assistants persistent memory across sessions
  • Building sophisticated cognitive architectures for autonomous agents
  • Creating memory-augmented workflows in IDEs and development tools

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

vestige · Install

Installation

Quick Start

  1. Download the binary for your platform from [GitHub releases](https://github.com/samvallad33/vestige/releases/latest)
  2. Make it executable: chmod +x vestige
  3. Run it: ./vestige

Integration with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "vestige": {
      "command": "path/to/your/vestige",
      "args": []
    }
  }
}

Package Managers

  • Cargo: cargo install vestige
  • Homebrew: brew install vestige
Comparison generated from public README + GitHub signals. Last updated automatically.