caret_list_notes
List meeting notes in the workspace with optional filters. Returns a paginated list of notes with basic info. Usecaret_get_note to get full details including transcript and summary.
Required permission: notes
Parameters
number
default:"20"
Number of notes to return (1–100)
number
default:"0"
Pagination offset
string
default:"createdAt"
Field to sort by. Options:
createdAt, updatedAt, titlestring
default:"desc"
Sort order. Options:
asc, descstring
Filter by note status. Options:
idle, recording, transcript-processing,
recorded-not-summarized, summarizing, completedstring
Search query for title
string
Filter notes created after date (ISO 8601)
string
Filter notes created before date (ISO 8601)
string
Comma-separated folder IDs to filter by
string
Filter by participant email address
Response
NoteListItem[]
object
caret_get_note
Get detailed information about a specific note including full transcript, summary, and participant info. Required permission:notes
Parameters
string
required
The note ID
string
Comma-separated folder IDs to require the note to belong to
Response
Note
caret_search_notes
Search notes by title. Returns matching notes with basic info. Required permission:notes
Parameters
string
required
Search query
number
default:"10"
Number of results to return (1–50)
string
Comma-separated folder IDs to filter by
Response
NoteListItem[]
Array of matching notes (same shape as
caret_list_notes)string
The search query used
number
Number of results returned
caret_search_knowledge
Search meeting notes and workspace knowledge using natural language. Uses semantic search to find relevant content from meeting summaries, Q&As, and knowledge base articles. Required permission:notes
Parameters
string
required
Natural language search query (e.g., “What did the customer say about
pricing?”)
string
default:"all"
Source type to search. Options:
all, meeting (only meeting notes),
knowledge (only knowledge base)number
default:"5"
Maximum number of results to return (1–20)
Response
SearchResult[]
string
The search query used
string
The source type filter applied
number
Number of results returned
caret_get_workspace
Get details about the current workspace including name, settings, and allowed email domains. Required permission: noneParameters
No parameters required.Response
Workspace
caret_list_members
List workspace members with optional search. Returns member info including name, email, role, and assigned folders. Required permission:users
Parameters
number
default:"20"
Number of members to return (1–100)
number
default:"0"
Pagination offset
string
Search by name or email
Response
Member[]
object