The MCP Memory Dashboard is a desktop application for managing the MCP Memory Service, a semantic memory system built on the Model Context Protocol. It provides a user-friendly interface for storing, searching, and organizing memories with features like semantic search, tag management, and time-based recall.
Clone the repository:
git clone https://github.com/yourusername/mcp-memory-dashboard.git
cd mcp-memory-dashboard
Install dependencies:
npm install
Configure environment variables:
Create a .env
file in the project root:
macOS/Linux:
# Basic Configuration
VITE_MEMORY_SERVICE_PATH="/path/to/mcp-memory-service"
VITE_MEMORY_CHROMA_PATH="/Users/yourusername/Library/Application Support/mcp-memory/chroma_db"
VITE_MEMORY_BACKUPS_PATH="/Users/yourusername/Library/Application Support/mcp-memory/backups"
VITE_CLAUDE_CONFIG_PATH="/Users/yourusername/Library/Application Support/Claude/claude_desktop_config.json"
# Docker ChromaDB Mode (High Performance)
VITE_USE_DIRECT_CHROMA_ACCESS=true # Enable Docker mode for 2-3x faster performance
# VITE_USE_DIRECT_CHROMA_ACCESS=false # Traditional MCP mode (stable fallback)
Windows:
# Basic Configuration
VITE_MEMORY_SERVICE_PATH="C:\path\to\mcp-memory-service"
VITE_MEMORY_CHROMA_PATH="C:\Users\%USERNAME%\AppData\Local\mcp-memory\chroma_db"
VITE_MEMORY_BACKUPS_PATH="C:\Users\%USERNAME%\AppData\Local\mcp-memory\backups"
VITE_CLAUDE_CONFIG_PATH="C:\Users\%USERNAME%\AppData\Roaming\Claude\claude_desktop_config.json"
# Docker ChromaDB Mode (High Performance)
VITE_USE_DIRECT_CHROMA_ACCESS=true # Enable Docker mode for 2-3x faster performance
# VITE_USE_DIRECT_CHROMA_ACCESS=false # Traditional MCP mode (stable fallback)
Start the application:
npm start
\\
) or forward slashes (/
) in pathsC:\Users\<username>\AppData\Roaming\Claude\claude_desktop_config.json
C:\Users\<username>\AppData\Local\mcp-memory\chroma_db
C:\Users\<username>\AppData\Local\mcp-memory\backups
If you encounter script execution errors:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Feature | Docker Mode (true ) |
MCP Mode (false ) |
---|---|---|
Performance | 2-3x faster (50-150ms) | Standard (200-500ms) |
Service Conflicts | None | Possible (MCP conflicts) |
Requirements | Docker Desktop required | Python + UV required |
Data Migration | None (uses existing DB) | None (uses existing DB) |
Reliability | Auto-restart, health monitoring | Depends on MCP service |
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "memory" '{"command":"uv","args":["--directory","/path/to/mcp-memory-service","run","memory"],"env":{"MCP_MEMORY_CHROMA_PATH":"/Users/yourusername/Library/Application Support/mcp-memory/chroma_db","MCP_MEMORY_BACKUPS_PATH":"/Users/yourusername/Library/Application Support/mcp-memory/backups"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"memory": {
"command": "uv",
"args": [
"--directory",
"/path/to/mcp-memory-service",
"run",
"memory"
],
"env": {
"MCP_MEMORY_CHROMA_PATH": "/Users/yourusername/Library/Application Support/mcp-memory/chroma_db",
"MCP_MEMORY_BACKUPS_PATH": "/Users/yourusername/Library/Application Support/mcp-memory/backups"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"memory": {
"command": "uv",
"args": [
"--directory",
"/path/to/mcp-memory-service",
"run",
"memory"
],
"env": {
"MCP_MEMORY_CHROMA_PATH": "/Users/yourusername/Library/Application Support/mcp-memory/chroma_db",
"MCP_MEMORY_BACKUPS_PATH": "/Users/yourusername/Library/Application Support/mcp-memory/backups"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect