drio
Open app

Lipsky Memory MCP

Source

Multi-project memory MCP - A Model Context Protocol server for managing project memory and context

Catalog onlyCatalog onlySTDIO

Overview

Lipsky Memory MCP is a Model Context Protocol server designed for managing project memory and context, facilitating better organization and retrieval of project-related information.

To use Lipsky Memory MCP, set up the server in a Cline environment, configure the necessary environment variables for database access, and start managing your project contexts and relationships.

  • Project context management - Entity and relationship tracking - Memory persistence - Transaction support
  1. Managing complex project relationships and dependencies.
  2. Tracking changes and updates in project contexts over time.
  3. Supporting collaborative projects by maintaining shared memory.

Add to your AI client

Use these steps to connect Lipsky Memory MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

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

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

What programming environment is required for Lipsky Memory MCP?

Lipsky Memory MCP is designed to work in a Cline environment.

What database does Lipsky Memory MCP use?

It uses the Turso database for persistence.

Are there any known issues?

Yes, there are connection issues in the HyperChat environment that are currently under investigation.