Appearance
Meetings
Recording, transcripts and what comes out of them.
8 tools — 4 read, 4 write.
| Tool | What it does | |
|---|---|---|
create_meeting_note | write | Create a note linked to a meeting. |
create_tasks_from_meeting | write | Create one or more tasks linked back to a meeting via meetingRefs. |
get_meeting | read | Get full details of a meeting including transcript, linked notes, tasks, and collection item references. |
list_meetings | read | List meetings visible to you — your own meetings plus any shared with you. |
recall_get_transcript | read | Get the transcript for a recording bot. |
recall_join_meeting | write | Send a recording bot to join a meeting and register it as a Meeting entity. |
recall_list_bots | read | List recording bots for the current user and their status. |
update_meeting | write | Update a meeting's title, tags, or linked references. |
Calling these
Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.
See How the API works for auth, errors and the shared envelope.