# Send Clude Memory MCP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clude-memory-mcp",
    "name": "Clude Memory MCP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sebbsssss/clude-memory-mcp",
    "canonicalUrl": "https://clawhub.ai/sebbsssss/clude-memory-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clude-memory-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clude-memory-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "server.ts",
      "supabase-schema.sql"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clude-memory-mcp",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T21:31:03.039Z",
      "expiresAt": "2026-05-08T21:31:03.039Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clude-memory-mcp",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clude-memory-mcp",
        "contentDisposition": "attachment; filename=\"clude-memory-mcp-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clude-memory-mcp"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clude-memory-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clude-memory-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/clude-memory-mcp",
    "agentUrl": "https://openagent3.xyz/skills/clude-memory-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clude-memory-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clude-memory-mcp/agent.md"
  }
}
```
## Documentation

### Clude Memory MCP

MCP server exposing a 4-tier cognitive memory architecture inspired by Stanford's Generative Agents (Park et al. 2023).

### recall_memories

Search the memory system. Returns scored memories ranked by relevance, importance, recency, and vector similarity.

query — text to search against memory summaries
tags — filter by tags
related_user — filter by user/agent ID
memory_types — filter by type: episodic, semantic, procedural, self_model
limit — max results (1-20, default 5)
min_importance — minimum importance threshold (0-1)

### store_memory

Store a new memory. Memories persist across conversations, decay over time if not accessed, and get committed to Solana.

type — episodic (events), semantic (knowledge), procedural (behaviors), self_model (identity)
content — full memory content
summary — short summary for recall matching
tags — tags for filtering
importance — importance score 0-1
source — origin identifier (e.g. mcp:my-agent)

### get_memory_stats

Get statistics: counts by type, average importance/decay, dream session history, top tags.

### get_market_mood

Get current market mood and price state (no LLM call).

### ask_clude

Ask Clude a question and get an in-character response. Calls Claude API.

### Setup

npm install clude-bot

Requires a Supabase project with the schema from supabase-schema.sql. Set SUPABASE_URL and SUPABASE_SERVICE_KEY environment variables.

### Architecture

4-tier memory: episodic (7%/day decay), semantic (2%/day), procedural (3%/day), self_model (1%/day)
Hybrid retrieval: pgvector cosine similarity + keyword matching + tag scoring
Dream cycles: consolidation, reflection, emergence — every 6 hours
On-chain commitment: SHA-256 hashed memories committed to Solana via memo transactions
Granular decomposition: per-fragment embeddings for precise sub-memory retrieval

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sebbsssss
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T21:31:03.039Z
- Expires at: 2026-05-08T21:31:03.039Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clude-memory-mcp)
- [Send to Agent page](https://openagent3.xyz/skills/clude-memory-mcp/agent)
- [JSON manifest](https://openagent3.xyz/skills/clude-memory-mcp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clude-memory-mcp/agent.md)
- [Download page](https://openagent3.xyz/downloads/clude-memory-mcp)