MCP Catalogs
Home

everything vs memcord

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

everything
by modelcontextprotocol
memcord
by ukkit
Stars★ 85,748★ 67
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsProductivityDeveloper Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

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

memcord · Summary

Privacy-first MCP server for AI memory management with intelligent summarization and search 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

memcord · Use cases

  • Long-term project documentation and conversation tracking
  • Research and knowledge base building from AI conversations
  • Privacy-sensitive contexts requiring local storage

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

memcord · Install

Quick Install

**macOS / Linux:**

curl -fsSL https://github.com/ukkit/memcord/raw/main/install.sh | bash

**Windows (PowerShell):**

irm https://github.com/ukkit/memcord/raw/main/install.ps1 | iex

Claude Desktop Configuration

After installation, Memcord will automatically configure Claude Desktop. The configuration file will be placed in your Claude settings directory:

{
  "mcpServers": {
    "memcord": {
      "command": "python",
      "args": ["-m", "memcord.server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.