MCP Hub
Back to servers

mcp-memori

With Memori's MCP server, your agent can retrieve relevant memories before answering and store durable facts after responding, keeping context across sessions without any SDK integration. With MCP, it can: Store stable user facts and preferences after answering using the advanced_augmentation tool Recall relevant memories before answering using the recall tool Maintain context across sessions us

glama
Stars
1
Forks
2
Updated
Mar 24, 2026
Validated
May 7, 2026

Memori MCP Server

A stdio MCP server that bridges to the Memori API for persistent AI memory.

Tools

  • recall — Retrieve relevant memories for a query
  • advanced_augmentation — Store durable facts and preferences across sessions

Setup

Environment Variables

Required:

  • MEMORI_API_KEY — Your Memori API key
  • MEMORI_ENTITY_ID — Stable end-user/entity ID

Optional:

  • MEMORI_PROCESS_ID — Process/app/workflow ID
  • MEMORI_API_URL — API endpoint (defaults to https://api.memorilabs.ai/mcp)

Install and Run

npm install
npm run build

Usage with Claude Code

claude mcp add memori -- npx mcp-memori

Or add to .mcp.json:

{
  "mcpServers": {
    "memori": {
      "command": "npx",
      "args": ["mcp-memori"],
      "env": {
        "MEMORI_API_KEY": "your-api-key",
        "MEMORI_ENTITY_ID": "your-entity-id",
        "MEMORI_PROCESS_ID": "your-process-id"
      }
    }
  }
}

Usage with Cursor

Add to ~/.cursor/mcp.json or .cursor/mcp.json:

{
  "mcpServers": {
    "memori": {
      "command": "npx",
      "args": ["mcp-memori"],
      "env": {
        "MEMORI_API_KEY": "your-api-key",
        "MEMORI_ENTITY_ID": "your-entity-id",
        "MEMORI_PROCESS_ID": "your-process-id"
      }
    }
  }
}

Publishing to MCP Registry

npm run build
npm publish --access public
mcp-publisher init
mcp-publisher login github
mcp-publisher publish

Reviews

No reviews yet

Sign in to write a review