MCP Catalogs
Home

mie vs everything

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

mie
by kraklabs
everything
by modelcontextprotocol
Stars★ 42★ 85,748
30d uses
Score4677
Official
Categories
Knowledge GraphDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit2 mo agothis month

mie · Summary

MIE is a persistent memory graph MCP server that enables AI agents to share and recall knowledge across sessions.

everything · Summary

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

mie · Use cases

  • Cross-agent knowledge sharing between different AI platforms
  • Persistent memory for AI agents working on long-term projects
  • Structured knowledge capture for technical decisions and context

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

mie · Install

Install MIE using Homebrew:

brew tap kraklabs/mie
brew install mie

Initialize with:

mie init                    # Quick setup with defaults
mie init --interview        # Interactive setup

Configure as MCP server in Claude Desktop (.mcp.json):

{
  "mcpServers": {
    "mie": {
      "command": "mie",
      "args": ["--mcp"]
    }
  }
}

The MCP server will start automatically when needed.

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
Comparison generated from public README + GitHub signals. Last updated automatically.