Install
openclaw skills install qoris-memory-mcpPersistent memory for OpenClaw agents via the Qoris MCP server. Explicit save/recall tools for cross-session context. User-owned API key, no automatic data capture.
openclaw skills install qoris-memory-mcpThis skill connects your OpenClaw agent to the Qoris MCP server so it can persist memories you explicitly save — across sessions, with version history and semantic search.
Important: memories are saved only when your agent calls save_memory (or you run a memory command). The skill does not monitor, capture, or silently persist conversation content. Nothing is transmitted until you make an explicit tool call.
This skill sends data to an external service. Understand what before installing:
save_memory / search_knowledge / update_memory tool calls. Nothing else.https://mcp.qoris.ai/mcp (TLS), scoped to your QORIS_WORKSPACE_ID. Your workspace is isolated from other users.QORIS_API_KEY. The key is yours, generated by you at qoris.ai/dashboard.https://qoris.ai/privacy. You can delete individual memories with delete_memory or rotate the API key in your dashboard to invalidate all access.QORIS_API_KEY is your own per-user secret. No credentials are bundled with this skill. Treat the key as sensitive — create a restricted workspace for shared or enterprise use.Your agent can persist information it decides is worth remembering via the save_memory tool, and recall it later via search_knowledge or get_memories. Memories survive across sessions and remain available until you delete them.
Every memory update is a versioned record with a timestamp. You can see the history of what was stored and when via get_document_full_content.
Create separate memory contexts (branches) for different projects, clients, or workspaces. Your agent operates in the right context for the right task.
When multiple agents update the same memory, the MCP server surfaces contradictions for human resolution rather than silently overwriting.
Memory is workspace-scoped. Agents sharing the same QORIS_WORKSPACE_ID share the same memory pool. Your team can coordinate through a shared knowledge base.
search_knowledge runs a semantic search across stored memories and returns cited answers grounded in what was actually stored — no hallucination.
These are the only tools this skill exposes. Each is an explicit, user-triggered action — nothing runs automatically.
Store a new memory with optional tags and metadata. Content is the exact string you pass.
Retrieve memories the agent has previously stored, optionally filtered by tag or date.
Semantic search across stored memories. Returns the most relevant records with their content.
Update an existing memory record. Creates a new version, old version retained for audit.
Remove a memory. Deletion is logged in the audit trail.
List documents indexed in the knowledge base.
Retrieve the full content of a specific knowledge document.
qoris.aiQORIS_API_KEY and QORIS_WORKSPACE_IDexport QORIS_API_KEY="your-api-key-here"
export QORIS_WORKSPACE_ID="your-workspace-id-here"
Add to your OpenClaw configuration:
{
"mcpServers": {
"qoris-memory": {
"url": "https://mcp.qoris.ai/mcp",
"headers": {
"Authorization": "Bearer ${QORIS_API_KEY}",
"X-Workspace-ID": "${QORIS_WORKSPACE_ID}"
}
}
}
}
Start a new OpenClaw session and run:
/memory status
Optional: pair with knox-governance for audit logging of every memory read and write:
clawhub install knox-governance
clawhub install qoris-memory-mcp
Memory is workspace-scoped. Free tier includes up to 1,000 memories and 500MB knowledge storage. Paid plans unlock unlimited memories and storage.
https://docs.qoris.ai/memoryhttps://qoris.ai/dashboardhttps://qoris.ai/privacyhttps://github.com/QORIS-AI/qoris-memory-openclaw-skilleliel@qoris.aiQoris AI builds the trust and governance layer for enterprise AI agents. NVIDIA Inception Program member. Claude Partner Network member. Patent pending U.S. 63/907,730. Based in Stamford, CT.
qoris.ai