zoom_read_transcript
Zoom · macOS · Windows
Effect: read (strongest supported action). Status: gated.
Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.
macOS
Purpose
Reads the text artifacts of a local Zoom recording: the transcript/captions (.vtt or closed_caption.txt, cleaned to readable 'Speaker: text' lines) and the saved in-meeting chat. Pass the recording name or path from zoom_list_recordings. Perfect for 'summarize my last meeting' or 'what did we agree on in the kickoff call'.
Required inputs
recording— Recording folder name (or full path) from zoom_list_recordings. Partial name match works.
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — macOS
{
"properties": {
"include": {
"description": "'all' (default), 'transcript' or 'chat'",
"enum": [
"all",
"transcript",
"chat"
],
"type": "string"
},
"recording": {
"description": "Recording folder name (or full path) from zoom_list_recordings. Partial name match works.",
"type": "string"
}
},
"required": [
"recording"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"recording": "2026-10-06 Planning meeting"
}Windows
Purpose
Reads the text artifacts of a local Zoom recording: the transcript/captions (.vtt or closed_caption.txt, cleaned to readable 'Speaker: text' lines) and the saved in-meeting chat. Pass the recording name or path from zoom_list_recordings. Great for 'summarize my last meeting'.
Required inputs
recording— Recording folder name (or full path) from zoom_list_recordings. Partial name match works.
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — Windows
{
"properties": {
"include": {
"description": "'all' (default), 'transcript' or 'chat'.",
"enum": [
"all",
"transcript",
"chat"
],
"type": "string"
},
"recording": {
"description": "Recording folder name (or full path) from zoom_list_recordings. Partial name match works.",
"type": "string"
}
},
"required": [
"recording"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"recording": "2026-10-06 Planning meeting"
}