← Back to directory
Personal Productivity Medium to set up AI workflow Summarize

Auto Generate Meeting Notes From Zoom

Source reviewed Updated 2026-07-07

When a Zoom meeting ends, the agent summarizes the transcript into decisions and action items, saves them to Google Docs.

founders and execsops and IT teams

What it does

You get automatically generated meeting summaries that extract key decisions and action items from your Zoom recordings. These organized notes are saved directly to Google Docs while a quick summary with a link is instantly posted to your designated Slack channel.

Step by step

  1. Configure a Zoom webhook to listen for the 'meeting.completed' event and extract the meeting ID.
  2. Use the Zoom API with the extracted ID to fetch the transcript file in JSON or SRT format.
  3. Format the LLM prompt by injecting the raw transcript text along with instructions for extracting decisions and action items.
  4. Send a POST request to the Google Docs API to create a new document and append the structured summary.

Where the LLM does the work

  • Generate concise bullet points that distinguish between final decisions and pending action items from noisy conversation transcripts.
  • Identify specific owners for each action item when names are ambiguous or mentioned indirectly in the dialogue.
  • Craft a brief, professional summary paragraph suitable for a Slack message that highlights critical outcomes without overwhelming readers.

Watch out for

Transcripts often contain filler words and overlapping speech so you should implement basic text cleaning before sending to the LLM to reduce token costs and noise.
Google Docs API requires specific OAuth scopes that must be pre-approved by your organization's admin or you will get permission denied errors.
Slack message formatting breaks if the summary contains unescaped special characters so ensure proper HTML or markdown escaping before posting.

Tools that fit

Zoom Service Trigger and capture meeting data
OpenAI LLM Summarize transcript into notes
Google Docs Service Save formatted meeting notes
Slack Service Post summary and link to channel

The agent brief

Everything your agent needs, including the gotchas. Copy it and go.
agent-brief.md
You are helping me build the following AI agent workflow.

## Goal
Auto Generate Meeting Notes From Zoom: When a Zoom meeting ends, the agent summarizes the transcript into decisions and action items, saves them to Google Docs.

## Specification
- What it does: You get automatically generated meeting summaries that extract key decisions and action items from your Zoom recordings. These organized notes are saved directly to Google Docs while a quick summary with a link is instantly posted to your designated Slack channel.
- Trigger: Triggered by an event (Event · on meeting ended)
- Autonomy: Fully hands-off
- Expected setup effort: about an afternoon
- Tools/services involved:
  - Zoom: Trigger and capture meeting data
  - OpenAI: Summarize transcript into notes
  - Google Docs: Save formatted meeting notes
  - Slack: Post summary and link to channel

## Known pitfalls, handle each one explicitly in your implementation
1. Transcripts often contain filler words and overlapping speech so you should implement basic text cleaning before sending to the LLM to reduce token costs and noise.
2. Google Docs API requires specific OAuth scopes that must be pre-approved by your organization's admin or you will get permission denied errors.
3. Slack message formatting breaks if the summary contains unescaped special characters so ensure proper HTML or markdown escaping before posting.

## Reference implementation
https://n8n.io/workflows/8057 (workflow template)
Fetch and inspect this before building. If it matches my stack, adapt it;
if not, rebuild the pattern with my tools.

## Process requirements
1. Before building: ask me which of the listed tools I actually use and
   what my platform is (n8n / Make / code / other). Do not assume.
2. Adapt the pattern to my answers; do not force the reference stack.
3. Address every pitfall above; tell me how you handled each.
4. Provide a test plan I can run before letting this touch real data.
5. Ask before any step that sends messages, modifies data, or spends money.

Source: https://usecasesforagents.com/use-case/auto-generate-meeting-notes-from-zoom/ via usecasesforagents.com

Frequently asked questions

Can I use a different Voice & Telephony than Zoom?

Yes. Zoom is only the example voice & telephony in this recipe. The same flow works with Aloware, ElevenLabs, GoToWebinar and Plivo. Swap the voice & telephony connection and keep the rest of the setup as written.

Want this running in your business?

This is what I do. I design and build AI agents like this one, and keep them running. If you want it set up for your team instead of doing it yourself, get in touch.
Get in touch →

Who it's for

Built for founders and execs who need personal productivity handled without hiring for it.

Ops-IT teams triaging their own internal requests get the same pattern, different queue.

Seen in the wild

← Back to directory