Install with AI

Your coding agent can integrate RememberOS for you — paste one prompt, or point it at MCP.

One-prompt setup (Claude Code, Cursor, etc.)#

Paste this into your agent in the project you want memory-enabled:

Use the RememberOS memory API at https://rememberos.ai. Read the bearer key from the
LONGMEM_API_KEY env var. Before answering, search relevant memory with
POST /v1/memory/search {"query": <user intent>}. After learning a durable fact
about the user or project, store it with
POST /v1/memory/collections/project/memories {"text": <fact>}. Prefer the
longmem Python or JS SDK if available.

The agent reads llms.txt — the machine-readable API summary at the site root — and wires the calls itself.

MCP (Model Context Protocol)#

RememberOS speaks MCP over HTTP: point any MCP-capable agent at POST https://rememberos.ai/v1/mcp with your mv_… key as a bearer token. Available tools:

ToolDoes
search_memoryhybrid search across your memories
store_memorystore a new memory
get_memoryfetch one memory by id
list_collectionslist your collections
related_memoryfind memories related to one — discover patterns
what_changedwhere newer facts superseded older ones
collection_healthstale / expired / supersessions + needs_attention
summarize_collectionboard-report briefing — summary + key themes
find_duplicatessurface near-duplicate clusters (read-only)
archive_stalesoft-archive stale memories (reversible, dry-run default)

What the agent should know#