MCP Catalogs
Home

mcp-server vs memory

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

mcp-server
by bitwarden
memory
by modelcontextprotocol
Stars★ 165★ 85,748
30d uses
Score5077
Official
Categories
SecurityProductivityDeveloper Tools
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-server · Summary

MCP server providing AI assistants with secure access to Bitwarden password manager vault management and organization administration features.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

mcp-server · Use cases

  • AI assistants retrieving and managing passwords and secure notes from Bitwarden vault
  • Automating organization administration tasks like member management and collection creation
  • Generating and storing secure passwords directly through AI assistants

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

mcp-server · Install

Installation

  1. Install the Bitwarden CLI globally: npm install -g @bitwarden/cli
  2. Add to your Claude Desktop configuration:
{
  "mcpServers": {
    "bitwarden": {
      "command": "npx",
      "args": ["-y", "@bitwarden/mcp-server"],
      "env": {
        "BW_SESSION": "your-session-token-here"
      }
    }
  }
}
  1. Get your session token: bw login; bw unlock --raw
  2. For organization features, also add BW_CLIENT_ID and BW_CLIENT_SECRET environment variables.

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.