drio
Open app

Simple Memory Extension MCP Server

Source

An MCP server to extend the context of agents. Useful when coding big features or vibe coding and need to store/recall progress, key moments or changes or anything worth remembering. Simply ask the agent to store memories and recall whenever you want.

Catalog onlyCatalog onlySTDIO

Overview

Simple Memory Extension MCP Server is a server designed to extend the context window and memory of agents, allowing users to store and recall important information while coding or working on projects.

To use the server, install the necessary packages and start the server using the command: npm install followed by npm start. You can then interact with the server to manage context items and namespaces.

  • Store and retrieve context items with ease. - Create and manage namespaces for better organization. - Perform semantic searches to find context items based on meaning.
  1. Storing progress and key moments while developing large features.
  2. Managing context for AI agents that require memory.
  3. Facilitating vibe coding by recalling important changes or notes.

Add to your AI client

Use these steps to connect Simple Memory Extension MCP Server 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": {
    "simple-memory-extension-mcp-server-gmacev": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-simple-memory-extension-mcp-server-gmacev"
      ]
    }
  }
}

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": {
    "simple-memory-extension-mcp-server-gmacev": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-simple-memory-extension-mcp-server-gmacev"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "simple-memory-extension-mcp-server-gmacev": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-simple-memory-extension-mcp-server-gmacev"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Can I use this server for any type of project?

Yes! It is designed to assist in various coding projects where memory management is beneficial.

Is there a specific programming language required?

The server is built with TypeScript, but it can be integrated with other languages as needed.

How does the semantic search work?

The semantic search uses an embedding model to find context items based on their meaning rather than exact matches.