Memos

PassAudited by ClawScan on May 1, 2026.

Overview

The skill’s behavior matches its memo-management purpose, but it requires a Memos access token and an external npx MCP server that can read, change, and delete memos.

This skill appears coherent and purpose-aligned. Before installing, make sure you trust the openclaw-memos-mcp package, use a limited Memos token if possible, keep memo creation private unless you explicitly want public memos, and carefully confirm any delete requests.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The user must trust the external MCP server package before giving it access to their Memos instance.

Why it was flagged

The skill relies on an external MCP package launched via npx, and the artifact does not pin a version or provide package provenance.

Skill content
"command": "npx", "args": ["openclaw-memos-mcp"]
Recommendation

Verify the MCP package source, consider pinning a known version, and only configure it if you trust it.

What this means

Anyone or anything with this token may be able to access or modify memos allowed by that token.

Why it was flagged

The skill requires a Memos access token, which is expected for this integration but grants delegated authority over the user’s Memos data.

Skill content
"MEMOS_TOKEN": "<your-access-token>"
Recommendation

Use the least-privileged token available, store it carefully, and revoke it if the MCP server is no longer needed.

What this means

A mistaken or misunderstood delete request could permanently remove memo data.

Why it was flagged

The skill can perform irreversible deletion, but it discloses the impact and requires user confirmation.

Skill content
Call `memos_delete` with the memo ID. **This is irreversible.** Always confirm with the user before deleting.
Recommendation

Review memo IDs and content carefully before approving deletes, and maintain backups if the Memos instance supports them.

What this means

The MCP server process can see memo content, search results, and the configured access token while performing the requested operations.

Why it was flagged

All memo content and operations are routed through the configured MCP server, making that server a sensitive data boundary.

Skill content
Uses openclaw-memos-mcp for all operations.
Recommendation

Only use a trusted MCP server and avoid routing highly sensitive memo content through untrusted integrations.