list_memories
ActiveTool of com.memxus/memxus
List recent memories in reverse-chronological order (read-only). When to use: audit what is saved, browse a collection, or collect memory IDs for get_memory or forget. When NOT: semantic search by topic → recall; one full record → get_memory; aggregate counts only → memory_stats. Behavior: default 20 results (plan-capped), ordered by created_at descending; empty set returns a message suggesting remember; full_content controls preview in the message text (120 chars); structured memories[] always includes full content. To list a team workspace instead of personal memory, pass workspace: <name>.
Parameters schema
{
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional tags. A tag like project:my-app also sets collection automatically."
},
"type": {
"enum": [
"general",
"preference",
"fact",
"instruction",
"conversation"
],
"type": "string",
"description": "Memory category: general, preference, fact, instruction, or conversation. Omit to include all types."
},
"limit": {
"type": "number",
"description": "Positive integer max results. Omit for server default (20). Capped per your plan."
},
"group_id": {
"type": "string",
"format": "uuid",
"description": "UUID of a shared group. Required with visibility=shared when group_name is not set."
},
"workspace": {
"type": "string",
"description": "To operate on a team workspace, pass its exact name, slug, or ID (e.g. \"Acme\"). Omit — or pass \"personal\" — for your personal memory (default). Every response echoes resolved_workspace so you can confirm where the operation actually happened. If the user mentions a project or team name in their message, check the memory://workspaces resource (or call list_collections) for the exact matching name BEFORE calling this tool, and pass it as workspace — do not ask the user to spell it out if it already matches one of their workspaces."
},
"collection": {
"type": "string",
"description": "Scope slug (e.g. project:memxus, personal:preferences). GitHub/Notion connector syncs use project:<slug> — one collection per project. Partial names work; call list_collections when unsure."
},
"group_name": {
"type": "string",
"description": "Exact group name (case-insensitive). Alternative to group_id for shared memories."
},
"visibility": {
"enum": [
"private",
"shared",
"all"
],
"type": "string",
"description": "Optional. Defaults to user dashboard preference (private unless include_group_memories_in_context is on)."
},
"full_content": {
"type": "boolean",
"default": false,
"description": "When true, message text shows full memory content. When false, message previews truncate at 120 chars; memories[].content in structured output is always full."
}
}
}Parent server
com.memxus/memxus
https://github.com/gpitrella/memxus-remote-mcp
2/7 registries