Back to MCP directory
publicPublicdnsLocal runtime

mcp-server-memos

为Memos笔记应用提供的MCP协议服务器,支持搜索和创建备忘录功能

article

README

🚀 memos-mcp-server

一个为Memos服务的MCP(模型上下文协议)服务器,可助力Memos实现特定功能。

smithery badge

🚀 快速开始

✨ 主要特性

  • search_memos:按关键词搜索笔记。
  • create_memo:创建新的笔记。

📦 安装指南

通过Smithery安装

要自动将mcp-server-memos安装到Claude Desktop,请使用Smithery

npx -y @smithery/cli install @LeslieLeung/mcp-server-memos --client claude
{
    "mcpServers": [
        {
            "memos": {
                "command": "uvx",
                "args": [
                    "memos-mcp-server"
                ],
                "env": {
                    "MEMOS_URL": "https://memos.example.com",
                    "MEMOS_API_KEY": "your_api_key",
                    "DEFAULT_TAG": "#mcp"
                }
            }
        }
    ]
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client