一键导入
memcord
Privacy-first, self-hosted chat memory for OpenClaw — save and recall conversation history across sessions without any cloud dependency.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Privacy-first, self-hosted chat memory for OpenClaw — save and recall conversation history across sessions without any cloud dependency.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | memcord |
| description | Privacy-first, self-hosted chat memory for OpenClaw — save and recall conversation history across sessions without any cloud dependency. |
| version | 4.1.0 |
| metadata | {"openclaw":{"requires":{"bins":["uv"]},"install":[{"kind":"uv","package":"memcord"}]}} |
Memcord is a self-hosted MCP server that gives you persistent, searchable memory across conversations. All data is stored as plain JSON files on your own machine — nothing leaves your device.
After installing, manually add the following to your ~/.openclaw/openclaw.json under the "mcp" key. Only two tools are exposed: memcord_auto_save (write) and memcord_read (read).
{
"mcp": {
"servers": {
"memcord": {
"command": "uvx",
"args": ["memcord"],
"toolFilter": {
"include": ["memcord_auto_save", "memcord_read"]
}
}
}
}
}
To use a custom slot name instead of the default "default" slot, add the "env" field:
{
"mcp": {
"servers": {
"memcord": {
"command": "uvx",
"args": ["memcord"],
"env": { "MEMCORD_DEFAULT_SLOT": "main" },
"toolFilter": {
"include": ["memcord_auto_save", "memcord_read"]
}
}
}
}
}
Verify the server is registered with:
openclaw mcp list
When activated, this skill gives you two tools:
memcord_auto_save — Save the current conversation to persistent memory. Call this at the end of meaningful conversations or whenever the user asks you to remember something. No slot setup required.
memcord_read — Recall everything stored in memory. Call this at the start of a new conversation to resume context, or when the user asks "what do you remember?" or "what did we discuss before?".