mit einem Klick
memory-store
// Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.
// Store a memory in ourmem. Use when user says remember, save, store, or don't forget something.
Shared memory that never forgets. Cloud hosted or self-deployed. Collective intelligence for AI agents with Space-based sharing across agents and teams. Use when users say: - "install ourmem" / "install omem" - "setup memory" / "setup omem" - "add memory plugin" - "ourmem onboarding" / "omem onboarding" - "memory not working" - "remember this" - "save this for later" - "don't forget" - "recall preferences" - "what did I say last time" - "import memories" - "share memories" - "share with user" - "share memories to someone" - "team memory" - "shared space" - "persistent memory" - "cross-session memory" - "collective intelligence" - "memory analytics" - "memory stats" - "self-host memory" - "deploy memory server" Even if the user doesn't say "ourmem" or "omem", trigger when they want persistent memory, memory sharing between agents, memory analytics, or memory import/export.
Search and recall memories from ourmem. Use when user asks to find, recall, search, or remember something.
| name | memory-store |
| description | Store a memory in ourmem. Use when user says remember, save, store, or don't forget something. |
Save information to ourmem for persistent memory across sessions.
curl -sf \
-X POST \
-H "X-API-Key: $OMEM_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
"${OMEM_API_URL:-https://api.ourmem.ai}/v1/memories" \
-d '{"content": "$ARGUMENTS", "tags": ["manual"], "source": "claude-code"}'
Replace $ARGUMENTS with the content to store.
The API returns the created memory:
{
"id": "...",
"content": "...",
"tags": ["manual"],
"source": "claude-code",
"created_at": "..."
}