MCP Memory Custom MCP Server

This project adds new features to the Memory server offered by the MCP team. It allows for the creation and management of a knowledge graph that

Local serverstdio

What is the MCP Memory Custom MCP server?

This project adds new features to the Memory server offered by the MCP team. It allows for the creation and management of a knowledge graph that captures interactions via a language model (LLM). The mcp memory custom mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

Its toolset

Everything the assistant can do here goes through one of these:

  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — The Installation tool exposed by this server
  • Configuration — Before running the server, you can set the MEMORY_FILE_PATH environment variable to specify the path for the memory file. If not set, the server will

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @smithery/cli on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

You will need one environment variable: MEMORY_FILE_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js (version 16 or higher)

When to reach for it

Plenty of knowledge and memory servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Memory Custom's toolset — Prerequisites, Installation, Configuration — is a fair guide to whether it matches your workflow. It is maintained by BRO3886; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp memory custom mcp server does with a few real requests.

Available tools

ToolWhat it does
PrerequisitesThe Prerequisites tool exposed by this server.
InstallationThe Installation tool exposed by this server.
ConfigurationBefore running the server, you can set the MEMORY_FILE_PATH environment variable to specify the path for the memory file. If not set, the server will default to using memory.json in the same directory as the script.

How to install the MCP Memory Custom MCP server

{
  "mcpServers": {
    "memory": {
      "command": "node",
      "args": ["/path/to/mcp-memory-custom/dist/index.js"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js (version 16 or higher)
VariableDescriptionRequired
MEMORY_FILE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use MCP Memory Custom to Prerequisites.
  • Use MCP Memory Custom to Installation.
  • Use MCP Memory Custom to Configuration.

Frequently asked questions

It connects MCP Memory Custom to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Prerequisites, Installation, Configuration) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Memory Custom directly.