MCP Catalogs
Home

AgentRecall-MCP vs everything

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

AgentRecall-MCP
by Goldentrii
everything
by modelcontextprotocol
Stars★ 252★ 85,748
30d uses
Score5177
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

AgentRecall-MCP · Summary

AgentRecall provides AI session memory with Think-Execute-Reflect quality loops to enable persistent, compounding memory for AI agents.

everything · Summary

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

AgentRecall-MCP · Use cases

  • Persistent memory for AI agents working across multiple sessions
  • Knowledge management for development teams using Claude or similar AI tools
  • Bootstrap import from existing memory systems like Claude AutoMemory

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

AgentRecall-MCP · Install

Installation

  1. Install the MCP server via npm:
npm install -g agent-recall-mcp
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "agent-recall": {
      "command": "npx",
      "args": ["agent-recall-mcp"]
    }
  }
}
  1. Run /arbootstrap to import existing memory systems and projects.

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.