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 | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | SecurityProductivityDeveloper Tools | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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
- Install the Bitwarden CLI globally:
npm install -g @bitwarden/cli - Add to your Claude Desktop configuration:
{
"mcpServers": {
"bitwarden": {
"command": "npx",
"args": ["-y", "@bitwarden/mcp-server"],
"env": {
"BW_SESSION": "your-session-token-here"
}
}
}
}- Get your session token:
bw login; bw unlock --raw - For organization features, also add
BW_CLIENT_IDandBW_CLIENT_SECRETenvironment 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"]
}
}
}