Memory MCP 1file MCP Server

A high-performance, **pure Rust** Model Context Protocol (MCP) server that provides persistent, semantic, and graph-based memory for AI agents.

Local serverstdioPython

What is the Memory MCP 1file MCP server?

If you already use Memory MCP 1file, the memory mcp 1file mcp server is the piece that lets your assistant work with it directly. A high-performance, pure Rust Model Context Protocol (MCP) server that provides persistent, semantic, and graph-based memory for AI agents.

Installation

The server ships on npm as memory-mcp-1file, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Cursor — 1. Go to Cursor Settings > Features > MCP Servers. 2. Click + Add New MCP Server. 3. Type: command 4. Name: memory 5

Worth knowing first

  • 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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Memory MCP 1file's toolset — Cursor — is a fair guide to whether it matches your workflow. It is maintained by pomazanbohdan; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Memory MCP 1file's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Cursor1. Go to **Cursor Settings** > **Features** > **MCP Servers**. 2. Click **+ Add New MCP Server**. 3. **Type**: command 4. **Name**: memory 5. **Command**: npx -y memory-mcp-1file

How to install the Memory MCP 1file MCP server

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": [
        "run",
        "--init",
        "-i",
        "--rm",
        "--memory=3g",
        "-v", "mcp-data:/data",
        "-v", "/absolute/path/to/your/project:/project:ro",
        "ghcr.io/pomazanbohdan/memory-mcp-1file:latest"
      ]
    }
  }
}

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

Example prompts to try

  • Use Memory MCP 1file to Cursor.

Frequently asked questions

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