MCP Memos

v1.0.0Knowledge & Memorystable

A Python package that enables LLM models to interact with Memos server through the Model Context Protocol interface, allowing search, creation, retrieval, and management of memos.

mcpmcp-servermcp-serversmemosmodel-context-protocol
Share:
21
Stars
0
Downloads
0
Weekly
0/5

What is MCP Memos?

MCP Memos is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to python package that enables llm models to interact with memos server through the model context protocol interface, allowing search, creation, retrieval, and management of memos.

A Python package that enables LLM models to interact with Memos server through the Model Context Protocol interface, allowing search, creation, retrieval, and management of memos.

This server falls under the Knowledge & Memory category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • A Python package that enables LLM models to interact with Me

Use Cases

Search, create, and manage memos with LLM models.
Build note-taking systems integrated with AI assistants.
RyoJerryYu

Maintainer

LicenseMIT License
Languagepython
Versionv1.0.0
UpdatedFeb 16, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx mcp-server-memos

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use MCP Memos

The MCP Server Memos package connects LLM assistants to a self-hosted Memos server (usememo.com) via the Model Context Protocol, enabling Claude and other MCP clients to search, create, retrieve, and tag memos without leaving the conversation. It exposes four tools — list_memo_tags, search_memo, create_memo, and get_memo — and supports Memos visibility levels (PRIVATE, PROTECTED, PUBLIC) so notes go to the right audience. Developers and knowledge workers who run their own Memos instance can use this to build an AI-assisted personal knowledge base where Claude can store and recall notes on demand.

Prerequisites

  • A running Memos server instance (self-hosted, e.g. at http://localhost:5230)
  • A Memos access token from your Memos account settings
  • Python 3.9 or later with pip or uv installed
  • An MCP-compatible client such as Claude Desktop
1

Install mcp-server-memos via pip

Install the package from PyPI. The package name on PyPI is mcp-server-memos.

pip install mcp-server-memos
2

Get your Memos access token

Log in to your Memos instance, go to Settings → Profile, and generate an access token. Copy this token — you will need it for the server configuration.

3

Add the server to Claude Desktop config

Configure the server with your Memos host, port, and access token. The default port for Memos is 5230. Pass these as command-line arguments to the uvx command.

{
  "mcpServers": {
    "memos": {
      "command": "uvx",
      "args": [
        "--prerelease=allow",
        "mcp-server-memos",
        "--host", "localhost",
        "--port", "5230",
        "--token", "your-access-token-here"
      ]
    }
  }
}
4

Restart Claude Desktop

Fully quit and reopen Claude Desktop. The four Memos tools (list_memo_tags, search_memo, create_memo, get_memo) should now be available in your conversations.

5

Test the connection

Ask Claude to list your memo tags or search for a keyword to confirm the server can reach your Memos instance.

MCP Memos Examples

Client configuration

Claude Desktop configuration connecting to a local Memos instance on port 5230 with a personal access token.

{
  "mcpServers": {
    "memos": {
      "command": "uvx",
      "args": [
        "--prerelease=allow",
        "mcp-server-memos",
        "--host", "localhost",
        "--port", "5230",
        "--token", "your-memos-access-token"
      ]
    }
  }
}

Prompts to try

Example prompts that exercise the four Memos tools for search, creation, and retrieval.

- "Search my memos for notes about the project architecture decisions"
- "Create a new private memo with today's meeting notes: [paste notes here]"
- "List all memo tags I've used and tell me which topics I write about most"
- "Get memo memos/abc123 and summarize it for me"
- "Create a public memo summarizing the key takeaways from our discussion"

Troubleshooting MCP Memos

Connection refused or timeout errors when tools try to reach Memos

Verify your Memos server is running and accessible at the host/port you configured. Try curl http://localhost:5230/api/v1/memo in a terminal. If using a remote Memos instance, replace localhost with the correct hostname or IP.

Authentication errors or 401 responses from Memos

Regenerate your access token in Memos Settings → Profile and update the --token argument in your config. Tokens may expire or be revoked if you change your password.

Smithery installation alternative if pip install fails

Install via Smithery CLI: npx -y @smithery/cli install @RyoJerryYu/mcp-server-memos-py --client claude. This automates the config setup and may resolve dependency conflicts.

Frequently Asked Questions about MCP Memos

What is MCP Memos?

MCP Memos is a Model Context Protocol (MCP) server that python package that enables llm models to interact with memos server through the model context protocol interface, allowing search, creation, retrieval, and management of memos. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install MCP Memos?

Follow the installation instructions on the MCP Memos GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with MCP Memos?

MCP Memos works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is MCP Memos free to use?

Yes, MCP Memos is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Browse More Knowledge & Memory MCP Servers

Explore all knowledge & memory servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "mcp-server-memos": { "command": "npx", "args": ["-y", "mcp-server-memos"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use MCP Memos?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides