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.
- MCP tool name:
Create_Memories - Data type: Memory data type
- Returns: Memory MCP response
- Annotations: Not read only, not destructive, not idempotent, closed world
- Surfaces: GovTribe AI (when memories are enabled)
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."
}
}Related articles
- 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.
Create interest and request match
In one call, create a new teaming interest for the acting user on a specific opportunity and immediately request a match against an existing target interest on the same opportunity. Use Request_Teaming_Match if you already have an interest on the opportunity. Triggers async AI summary generation and notification emails to potential teaming partners on the opportunity.
Create pipeline
Create a GovTribe pipeline.