GovTribe

Create memories MCP tool

Creates a durable user memory: the reusable way the user works that they would otherwise re-explain each conversation. Include a future expires_at date so the memory can be reviewed, reinforced, weakened, or pruned. Do not store facts that belong in a GovTribe record, ephemeral task details, or PII.

Examples

Search first so the agent does not create duplicate durable memories. Include a future expires_at date in YYYY-MM-DD format so GovTribe AI can review, reinforce, weaken, or prune the memory later.

Use strength to show how much support the memory should start with: weak for tentative context, normal for the default, or strong for high-confidence reusable context. Use reason when the lifecycle choice needs a short explanation.

Save a stable preference after checking for an existing memory

{
  "tool": "Search_Memories",
  "arguments": {
    "query": "saved search notification preference",
    "search_mode": "keyword",
    "size": 5
  }
}
{
  "tool": "Create_Memories",
  "arguments": {
    "memory": "The user prefers weekly saved-search notification examples unless they ask for instant alerts.",
    "expires_at": "2026-10-15"
  }
}

Save tentative context with a lifecycle review date

{
  "tool": "Create_Memories",
  "arguments": {
    "memory": "The user is temporarily comparing sources for FY2027 recompete tracking.",
    "expires_at": "2026-09-30",
    "strength": "weak",
    "reason": "Useful for the current planning cycle, but should be reviewed before it becomes long-term context."
  }
}
  • Memory MCP response: Review the response shape returned by this tool.
  • Memory data type: Understand the shared record fields and relationships used by this tool.
  • GovTribe AI: Review the GovTribe AI surface where this tool can be called.