docs/tools/memory_read
AgenticMemory

Read Persistent Agent Memory

CLI Tool Name: memory_read

Reads facts from the persistent agent memory store. Use this when you want your AI assistant to recall previously stored decisions, preferences, or context at the start of a session. It operates securely on your local filesystem without network access.

Parameters

ParameterTypeRequiredDescription
keystringnoSpecific fact key to retrieve. Omit to list all facts.
categorystringnoFilter by category. Only applies when key is omitted. Example: 'project'.

Example output

json
{
  "key": "user_preferred_style",
  "value": "Tailwind CSS",
  "category": "preferences"
}

How to use it

Your AI client calls this tool automatically when instructed to fetch facts. You can prompt explicitly:

example prompt

Read the fact with key 'user_preferred_style' from the memory facts.

Explore other AgenticStore MCP tools