Setting the file. One moment.
Subchapter 158.7
examples/search-and-act.mdMarkdown2 KBView on GitHub
Patterns for finding meetings and taking action using the current Zoom MCP tool surface.
search_meetings
q: "budget review"
from: "2026-03-01"
to: "2026-03-06"
page_size: 10Use this when the user starts from what was discussed rather than from a known meeting ID.
Step 1:
search_meetings
q: "product roadmap"
from: "2026-03-01"
to: "2026-03-06"
Step 2:
get_meeting_assets
meetingId: "MEETING_ID_OR_UUID"This is the main MCP pattern for retrieving summaries, recording references, linked docs, and other meeting-related assets.
Step 1:
search_meetings
q: "all hands"
from: "2026-03-01"
to: "2026-03-06"
Step 2:
get_recording_resource
meetingId: "MEETING_ID_OR_UUID"Use this when the user needs transcript-capable or playback-oriented resources after they have identified the target meeting.
Step 1:
search_meetings
q: "Q1 planning"
Step 2:
get_meeting_assets
meetingId: "MEETING_ID_OR_UUID"
Step 3:
switch to the dedicated zoom-docs-mcp server
Step 4:
create_file_with_content
file_name: "Q1 Planning Summary"
content: "# Decisions\n\n- ..."If the user asks for deterministic operations such as:
route to ../../rest-api/SKILL.md instead of assuming the current Zoom MCP surface exposes meeting CRUD.