MCP Hub
Back to servers

Memory MCP Server

Provides tools for AI agents to manage long-term memories, daily notes, and TODO lists through a structured markdown file system. It enables context awareness by allowing agents to read, write, and search entries for persistent information storage.

Updated
Feb 16, 2026

Memory MCP Server

MCP (Model Context Protocol) server for memory and note management. Provides tools for AI agents to read, write, and search memories and daily notes.

Features

  • Memory Management: Add and search entries in MEMORY.md (long-term memory)
  • Daily Notes: Read/write daily notes in memory/YYYY-MM-DD.md
  • TODO Lists: Add, list, and complete TODO items
  • Context Awareness: Get a summary of current context for AI agents

Installation

cd /root/.openclaw/workspace/memory-mcp-server
npm install

Usage

Start the Server

# Development mode
npm start

# Or run directly
node index.js

Available Tools

ToolDescriptionArguments
get_memoryRead MEMORY.mdNone
add_memoryAdd entry to MEMentry(required),category` (optional)
ORY.md`search_memory
get_daily_noteRead a daily notedate (optional, YYYY-MM-DD)
add_daily_noteAdd to daily noteentry (required), date (optional)
list_daily_notesList available noteslimit (optional, default: 10)
get_todosGet TODOs for a datedate (optional)
add_todoAdd a TODO itemtodo (required), date (optional)
complete_todoMark TODO completetodo (required), date (optional)
get_contextGet context summaryNone

Example Usage

// Add a memory
await tools.add_memory({
  entry: "User prefers WhatsApp for communication",
  category: "Preferences"
});

// Search memories
await tools.search_memory({
  query: "WhatsApp"
});

// Add a TODO
await tools.add_todo({
  todo: "Fix the Moltbook API timeout issue"
});

// Get context
await tools.get_context();

Integration with mcporter

Add to your MCP configuration:

{
  "mcpServers": {
    "memory": {
      "command": "node",
      "args": ["/root/.openclaw/workspace/memory-mcp-server/index.js"],
      "disabled": false
    }
  }
}

File Structure

memory-mcp-server/
├── index.js      # Main server implementation
├── package.json  # NPM configuration
├── README.md     # This file
└── test.js       # Test suite

License

ISC

Reviews

No reviews yet

Sign in to write a review