Install
openclaw skills install usememosCreate, read, update, and delete memos on a Memos instance (usememos/memos). Handles requests like "save this as a memo", "list my recent memos", "update mem...
openclaw skills install usememosProvides full CRUD operations on a self-hosted Memos instance through 5 MCP tools. Agents can create quick notes, search existing memos, update content or visibility, and delete memos they no longer need.
openclaw-memos-mcp MCP serverThis skill requires the openclaw-memos-mcp MCP server to be running. Before
using any memos_* tool, check if the tools are available. If not, tell the
user they need to add the MCP server to their configuration:
{
"mcpServers": {
"memos": {
"command": "npx",
"args": ["openclaw-memos-mcp"],
"env": {
"MEMOS_API_URL": "http://localhost:5230",
"MEMOS_TOKEN": "<your-access-token>"
}
}
}
}
Tell the user to:
MEMOS_API_URL with their Memos instance URL<your-access-token> with the tokenCall memos_create with the content and optional visibility.
content: Markdown text. Supports #hashtags which Memos auto-extracts as tags.visibility: PRIVATE (default), PROTECTED (logged-in users), or PUBLIC (everyone).Call memos_list to browse or search memos.
pageSize: Number of results (default 20).pageToken: For pagination, use the nextPageToken from a previous response.filter: CEL filter expression. Examples:
tag == "work" — memos tagged #workvisibility == "PUBLIC" — public memos onlycreator == "users/1" — memos by a specific userCall memos_get with the memo ID. The ID is the part after memos/ in the
resource name (e.g., if the name is memos/abc123, the ID is abc123).
Call memos_update with the memo ID and the fields to change. Only specify
fields you want to update — unspecified fields remain unchanged.
content: New Markdown contentvisibility: New visibility levelpinned: true to pin, false to unpinCall memos_delete with the memo ID. This is irreversible. Always confirm
with the user before deleting.
PRIVATE — never create public memos unless explicitly askedMEMOS_TOKENMEMOS_API_URL