Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.memanto.ai/llms.txt

Use this file to discover all available pages before exploring further.

memanto recall

Retrieve memories using semantic search.
memanto recall QUERY [OPTIONS]
Arguments:
  • QUERY - Search query (required)
Options:
  • -t, --type TEXT - Filter by type
  • -l, --limit INTEGER - Max results (default: 5, max: 100)
  • --as-of DATETIME - Recall as of timestamp
  • --changed-since DATE - Changed since date
  • --current-only - Only current (non-superseded) memories
Examples: Basic recall:
memanto recall "What about the customer?"
Filter by type:
memanto recall "preferences" --type preference
Specific limit:
memanto recall "customer info" --limit 10
Temporal queries:
# As of yesterday
memanto recall "status" --as-of "2025-03-29T12:00:00Z"

# Changed in last week
memanto recall "updates" --changed-since "2025-03-23"

# Only current (not archived)
memanto recall "commitments" --current-only
Output:
Found 3 memories:

1. Customer prefers email contact
   Type: preference
   Confidence: 0.98
   Created: 2025-03-26 09:00:00 UTC

2. Will deliver report by Friday
   Type: commitment
   Confidence: 1.0
   Created: 2025-03-28 14:30:00 UTC

3. In PST timezone
   Type: fact
   Confidence: 0.95
   Created: 2025-03-25 10:15:00 UTC