You're viewing a demo portfolio

Join the waitlist
PRSM

remember

Active

Tool of com.memxus/memxus

declared in 1.2.0

Save important information to long-term memory. Always set collection when the topic is clear: project work → project:<slug>, personal tastes → personal:preferences. Use append_to to extend an existing memory instead of creating duplicates. Vector search indexing completes asynchronously within a few seconds after save. To save to a team workspace instead of personal memory, pass workspace: <name>.

Parameters schema

{
  "type": "object",
  "required": [
    "content"
  ],
  "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",
      "default": "general",
      "description": "Category for this memory. Default: general. Use preference for tastes, fact for stable truths, instruction for rules."
    },
    "content": {
      "type": "string",
      "description": "The information to remember."
    },
    "group_id": {
      "type": "string",
      "description": "UUID of a shared group. Required with visibility=shared when group_name is not set."
    },
    "append_to": {
      "type": "string",
      "description": "UUID of an existing memory to append to (same user). Keeps revision history."
    },
    "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."
    },
    "importance": {
      "type": "number",
      "default": 0.5,
      "maximum": 1,
      "minimum": 0,
      "description": "Relevance weight from 0 (low) to 1 (high) for ranking in recall. Default: 0.5."
    },
    "visibility": {
      "enum": [
        "private",
        "shared"
      ],
      "type": "string",
      "default": "private",
      "description": "private = personal only (default). shared = save to a group (set group_id or group_name)."
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

com.memxus/memxus

https://github.com/gpitrella/memxus-remote-mcp

2/7 registries
View full server →