with one click
clude-memory-mcp
// MCP server for Clude's cognitive memory system — store, recall, search, and dream. Supports hosted (zero-setup), self-hosted (Supabase + pgvector), and local (offline) modes.
// MCP server for Clude's cognitive memory system — store, recall, search, and dream. Supports hosted (zero-setup), self-hosted (Supabase + pgvector), and local (offline) modes.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | Clude Memory MCP |
| description | MCP server for Clude's cognitive memory system — store, recall, search, and dream. Supports hosted (zero-setup), self-hosted (Supabase + pgvector), and local (offline) modes. |
| metadata | {"openclaw":{"requires":{"bins":["node"]}}} |
MCP server exposing a cognitive memory architecture inspired by Stanford's Generative Agents (Park et al. 2023).
recall_memoriesSearch the memory system. Returns scored memories ranked by relevance, importance, recency, and vector similarity.
query — text to search against memory summariestags — filter by tagsrelated_user — filter by user/agent IDrelated_wallet — filter by Solana walletmemory_types — filter by type: episodic, semantic, procedural, self_model, introspectivelimit — max results (1-50, default 5)min_importance — minimum importance threshold (0-1)min_decay — filter out faded memories (0-1)track_access — update access timestamps (boolean)skip_expansion — skip LLM query expansion to save latency (boolean)store_memoryStore a new memory. Memories persist across conversations and decay over time if not accessed.
type — episodic (events), semantic (knowledge), procedural (behaviors), self_model (identity), introspective (journal)content — full memory content (max 5000 chars)summary — short summary for recall matching (max 500 chars)tags — tags for filteringconcepts — structured labels (auto-inferred if omitted)importance — importance score 0-1 (auto-scored if omitted)emotional_valence — -1 (negative) to 1 (positive)source — origin identifier (e.g. mcp:my-agent)source_id — external ID (tweet ID, message ID, etc.)related_user — associated user/agent IDrelated_wallet — associated Solana walletmetadata — arbitrary JSON metadataget_memory_statsGet statistics: counts by type, average importance/decay, dream session history, top tags.
find_clinamenAnomaly retrieval — find high-importance memories with low relevance to current context. Useful for lateral thinking and unexpected connections.
context — current context/topic (required)limit — max results (1-10, default 3)memory_types — filter by typemin_importance — minimum importance (0-1, default 0.6)max_relevance — maximum relevance threshold (0-1, default 0.35)The MCP server auto-detects its mode from environment:
| Mode | Config | Storage |
|---|---|---|
| Hosted | CORTEX_API_KEY | clude.io (zero setup) |
| Self-hosted | SUPABASE_URL + SUPABASE_SERVICE_KEY | Your Supabase |
| Local | --local flag or CLUDE_LOCAL=true | ~/.clude/memories.json |
npx @clude/sdk setup
Or install manually:
npm install -g @clude/sdk
clude mcp-install
MIT