OreCloud docs
Context storage for AI agents — store user context, recall it as a prompt-ready block.
OreCloud is a managed memory store for agentic apps. Each end user of your app gets their own store — their own instance of LodeDB, the open-source embedded vector database — created automatically on its first write. Embedding runs server-side, so there is no vector infrastructure to run.
import orecloud
client = orecloud.Client()
memory = client.store("user-42")
memory.add("likes hiking near Seattle")
context = memory.context_block("plan my weekend")Quickstart
Store and recall your first memory in under two minutes.
Working with memory
add, recall, context_block, TTLs, provenance, and forgetting.
Hosted MCP
Every store is an MCP server — connect an agent with one command.
Keys & environments
Environment-bound keys, scopes, and double-gated text access.
Portability
Pull a store to disk and open it locally — no lock-in.
For LLMs
These docs are also served in machine-friendly renderings: /llms.txt
(index), /llms-full.txt (everything as one markdown
document), and any page as raw markdown by appending .md to its URL.