meeting_prep_query_meeting_memories
Query meeting preparation and follow-up notes using metadata filters, date sorting, and optional AI-powered Q&A to retrieve relevant meeting memories.
Instructions
Queries the user's meeting knowledge bases (pre-meeting prep and/or post-meeting follow-up) with metadata filtering, date sorting, and optional LLM-powered Q&A. Supports recurring event series via wildcard patterns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | No | Calendar event ID. For recurring meetings, a specific instance like 'abc_20260217T153000Z' is auto-converted to 'abc_*' to match the full series. Use 'abc_*' directly for explicit wildcards, or 'abc123' for a single event. | |
| kb_scope | Yes | Which meeting KB(s) to query. | both |
| sort_order | Yes | Sort memories by meeting date. | desc |
| context_limit | Yes | Maximum number of meeting memories to include. | 20 |
| mode | Yes | 'list' returns memories with metadata (no LLM). 'query' sends memories as context to an LLM with your prompt. | list |
| prompt | No | The question to ask about the meeting memories (only used in 'query' mode). | |
| output_variable_name | Yes | Variable name to store the result. In 'list' mode: memories array. In 'query' mode: includes llm_response. | meeting_memories |