remember
Store facts and decisions permanently in a knowledge graph using semantic embeddings for meaning-based retrieval.
Instructions
Save something to your long-term memory.
Anything you save here persists forever and can be found later with recall
by searching for its meaning — not just exact words. Every memory is stored
in a knowledge graph with semantic embeddings.
Use this when:
You learn a fact worth keeping:
remember("Our API uses OAuth2 with PKCE", category="fact")A decision is made:
remember("Chose Postgres over Mongo for ACID compliance", category="decision", importance="high")You discover a user preference:
remember("User prefers concise responses", category="preference")An idea comes up:
remember("Consider adding WebSocket support for real-time sync", category="idea")
Args: content: What to remember — facts, decisions, preferences, ideas, project context. Be specific and include reasoning when possible. category: Tag for organization. One of: preference, fact, decision, idea, project, person, general. If omitted, auto-categorized as "general". importance: Priority level — "low", "normal", or "high". High-importance memories surface first in recall results.
Returns: Confirmation with the assigned memory ID. Returns an error message if the content is empty or the server is unreachable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| category | No | ||
| importance | No | normal |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |