MCP Server Memos
MCP 服务器备忘录 📝
一个 Python 包,为 LLM 模型提供通过MCP(模型上下文协议)接口与Memos服务器交互的能力。
🚀 功能
🔍 使用关键字搜索备忘录
✨ 创建具有可自定义可见性的新备忘录
📖 通过 ID 检索备忘录内容
🏷️ 列出和管理备忘录标签
🔐 使用访问令牌进行安全身份验证
Related MCP server: MCP Python Interpreter
🛠️ 使用方法
您可以将此包包含在您的配置文件中,就像使用其他 Python MCP 插件一样。
{
...,
"mcpServers": {
"fetch": { // other mcp servers
"command": "uvx",
"args": ["mcp-server-fetch"]
},
"memos": { // add this to your config
"command": "uvx",
"args": [
"--prerelease=allow",
"mcp-server-memos",
"--host",
"localhost",
"--port",
"5230",
"--token",
"your-access-token-here"
]
}
}
}📦安装
通过 Smithery 安装
要通过Smithery自动为 Claude Desktop 安装 mcp-server-memos-py:
npx -y @smithery/cli install @RyoJerryYu/mcp-server-memos-py --client claude手动安装
pip install mcp-server-memos命令行
mcp-server-memos --host localhost --port 8080 --token YOUR_ACCESS_TOKEN作为图书馆
from mcp_server_memos import Config, serve_stdio
config = Config(
host="localhost",
port=8080,
token="YOUR_ACCESS_TOKEN"
)
await serve_stdio(config=config)🔧 配置
范围 | 描述 | 默认 |
| Memos 服务器主机名 |
|
| 备忘录服务器端口 |
|
| 用于身份验证的访问令牌 |
|
🤝 可用工具
该 MCP 服务器提供以下与 Memos 交互的工具:
工具名称 | 描述 | 参数 |
| 列出所有现有的备忘录标签 | - |
| 使用关键字搜索备忘录 | - |
| 创建新备忘录 | - |
| 通过 ID 获取特定备忘录 | - |
🤝 贡献
欢迎贡献代码!欢迎提交 Pull 请求。
📄 许可证
该项目根据 MIT 许可证获得许可 - 有关详细信息,请参阅LICENSE文件。
🙏 致谢
Memos - 轻量级、自托管的备忘录中心
MCP(模型上下文协议) ——LLM 模型应用协议
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RyoJerryYu/mcp-server-memos-py'
If you have feedback or need assistance with the MCP directory API, please join our Discord server