🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Google Meet to Notion, meeting notes everyone reads

Lisa Granqvist Partner Workflow Automation Expert

You leave a Google Meet, and the real work starts. Someone has to dig up the transcript, turn it into something readable, post an update in Slack, and chase action items that somehow never make it into a system people trust.

Marketing leads feel it when campaign decisions get “lost in chat.” Ops managers deal with the follow-ups. Client-facing consultants get the awkward “can you recap?” email. This Meet Notion notes automation turns messy transcripts into a clean Notion page plus Slack and email recaps, consistently.

Below you’ll see exactly what the workflow does, what you need to connect, and how the pieces fit together so your team gets the same update every time.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: Google Meet to Notion, meeting notes everyone reads

Why This Matters: Post‑meeting follow-through breaks fast

Meeting notes don’t fail because people don’t care. They fail because the process is annoying. You have a transcript in one place (or nowhere), decisions in someone’s head, action items scattered across Slack threads, and a Notion page that might get created… eventually. Then there’s the worst part: the “what did we decide?” question two days later, right when you’re trying to ship work. It creates rework, duplicate conversations, and a low-grade sense that meetings are a tax you keep paying.

The friction compounds. Here’s where it usually breaks down.

  • Transcripts arrive unformatted, so turning them into readable notes becomes a 30–60 minute cleanup job after every important call.
  • Slack updates vary by who wrote them, which means stakeholders stop trusting the recap and ask for “one more quick summary.”
  • Action items don’t get assigned in a consistent place, so owners change mid-week and follow-through gets fuzzy.
  • Client or leadership recaps get delayed because they require copy-pasting, checking names, and rewriting sensitive parts carefully.

What You’ll Build: Google Meet transcript → Notion notes + Slack + email

This workflow turns your post-meeting admin into a repeatable pipeline. It starts when Fireflies.ai sends a webhook to n8n with the meeting ID, right after your Google Meet ends and the transcript is ready. n8n pulls the full transcript via an HTTP request, then OpenAI (GPT‑4.1‑mini) summarizes it into structured sections like a real meeting doc: a title, a short summary, decisions, action items, risks, and open questions. Next, the automation saves the raw transcript as a text file in Google Drive, creates a shareable Drive link, and publishes a Notion page that includes both the polished summary and the source transcript link. Finally, it posts a recap to your #meeting channel in Slack, then DMs each attendee their personalized notes and sends an email recap through Gmail.

The workflow begins with transcript capture (Fireflies.ai → n8n), then AI structuring (OpenAI → JSON parsing), then distribution (Notion + Slack + Gmail). You end up with one canonical Notion record and three lightweight ways for people to actually read it.

What You’re Building

Expected Results

Say you run 5 internal meetings a week with 8 attendees. Manually, it’s easy to spend about 45 minutes per meeting: pulling the transcript, writing notes, posting in Slack, and sending a recap email, which is roughly 4 hours weekly. With this workflow, you spend about 2 minutes to confirm Fireflies captured the call, then wait for processing while n8n creates the Notion page, Slack recap, DMs, and emails automatically. You get your week back without sacrificing clarity.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Fireflies.ai for Google Meet transcripts via webhook
  • Notion to store structured meeting notes
  • OpenAI API key (get it from your OpenAI dashboard)

Skill level: Intermediate. You’ll connect a few OAuth accounts, paste API keys, and map fields, but you won’t write code.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

Fireflies.ai triggers the workflow after the meeting. A webhook hits n8n with the meeting identifier, so you’re not uploading files or starting anything manually.

The transcript is pulled and prepared. n8n fetches transcript data over HTTP, then splits and recombines it so the AI receives clean, complete context instead of chopped-up fragments.

OpenAI turns raw text into structured notes. The Meeting Summary Agent generates a predictable format (title, summary, decisions, action items, risks, questions), and parsers help keep the output valid even when the model gets a little creative.

Notion, Drive, Slack, and Gmail get updated automatically. The transcript is saved to Google Drive and shared, the Notion page is created with the Drive link, a channel recap is posted to Slack, attendees are messaged individually, and an email recap goes out to everyone.

You can easily modify the Slack channel, the Notion database/page location, or the note format based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Webhook Trigger

Set up the webhook that receives the meeting ID and starts the workflow.

  1. Add the Incoming Webhook Trigger node and set HTTP Method to POST.
  2. Set Path to b9bbfae5-c81e-4897-8abe-5b4dd7c629df.
  3. Copy the webhook URL from Incoming Webhook Trigger and configure your meeting system to send a JSON body with meetingId.

Use the Test URL for initial validation and the Production URL once the workflow is active.

Step 2: Connect and Parse the Transcript Data

Fetch the transcript from Fireflies and convert sentences into a single combined transcript.

  1. In Fetch Transcript Data, set URL to https://api.fireflies.ai/graphql, Method to POST, and Authentication to genericCredentialType with Generic Auth Type set to httpBearerAuth.
  2. Set JSON Body to the provided GraphQL payload and keep the transcript ID reference as {{ $json.body.meetingId }}.
  3. Credential Required: Connect your httpBearerAuth credentials in Fetch Transcript Data.
  4. Credential Required: Connect your httpHeaderAuth credentials in Fetch Transcript Data if your API requires header-based auth.
  5. In Split Sentences, set Field to Split Out to data.transcript.sentences.
  6. In Combine Transcript Text, aggregate Field to Aggregate as raw_text to combine all sentences.

⚠️ Common Pitfall: If data.transcript.sentences is missing, verify the Fireflies response and the meeting ID posted to Incoming Webhook Trigger.

Step 3: Set Up AI Summarization and Parsing

Generate a structured meeting summary and ensure it follows a strict JSON schema.

  1. Open Primary Chat Model and select the model gpt-4.1-mini. Credential Required: Connect your openAiApi credentials.
  2. Configure Structured JSON Parser with the provided JSON Schema Example to enforce the output format.
  3. Configure Auto-Correct Parser as the output fixer linked to the structured parser.
  4. In Meeting Summary Agent, paste the full prompt and keep the input reference to {{ $('Combine Transcript Text').item.json.raw_text }}.
  5. Open Secondary Chat Model and select the model gpt-4.1-mini. Credential Required: Connect your openAiApi credentials.

The Structured JSON Parser and Auto-Correct Parser are AI sub-nodes—credentials must be added to Primary Chat Model and Secondary Chat Model, not the parsers themselves.

Step 4: Configure Drive Storage and Notion Output

Create a transcript file, share it, build a Drive link, and save the summary to Notion.

  1. In Generate Text File, set Operation to createFromText, Name to {{$now}}.txt, and Content to {{ $('Combine Transcript Text').item.json.raw_text }}.
  2. Select your Drive and folder in Generate Text File (replace [YOUR_ID] in the folder selector). Credential Required: Connect your googleDriveOAuth2Api credentials.
  3. In Share Drive File, set Operation to share and keep the file ID expression {{ $json.id }}. Credential Required: Connect your googleDriveOAuth2Api credentials.
  4. In Build Drive Link, set drive_link to https://drive.google.com/file/d/{{ $('Generate Text File').item.json.id }}/view and keep Include Other Fields enabled.
  5. In Create Notion Note, set Title to {{ $('Meeting Summary Agent').item.json.output.title }} and map the body blocks to summary, decisions, action items, risks, questions, and Transcript Link: {{ $json.drive_link }}. Credential Required: Connect your notionApi credentials.

Step 5: Configure Slack and Email Distribution

Create a Slack-ready update, post it to a channel, then notify attendees via email and direct message.

  1. In Compose Slack Update, select model gpt-4o-mini and keep the prompt with references to {{ $('Meeting Summary Agent').item.json.output.title }}, {{ $json.url }}, and {{ $('Build Drive Link').item.json.drive_link }}. Credential Required: Connect your openAiApi credentials.
  2. In Post to Meeting Channel, set Text to {{ $json.message.content }} and choose your Slack channel. Credential Required: Connect your slackApi credentials.
  3. In Retrieve Recent Events, set Operation to getAll, Limit to 1, Time Max to {{ $now }}, and Time Min to {{ $now.minus(20, 'minute') }}. Credential Required: Connect your googleCalendarOAuth2Api credentials.
  4. In Split Attendee List, set Field to Split Out to attendees.
  5. In Email Attendee Recap, set Send To to {{ $json.email }}, Subject to Meeting Recap: {{ $('Meeting Summary Agent').item.json.output.title }}, and Message to {{ $('Compose Slack Update').item.json.message.content }}. Credential Required: Connect your gmailOAuth2 credentials.
  6. In Lookup Slack User, set URL to https://slack.com/api/users.lookupByEmail?email={{ $('Split Attendee List').item.json.email }}. Credential Required: Connect your httpHeaderAuth credentials.
  7. In DM Each Attendee, set Text to {{ $('Compose Slack Update').item.json.message.content }} and User to {{ $json.user.id }}. Credential Required: Connect your slackApi credentials.

⚠️ Common Pitfall: If Lookup Slack User returns no user, the attendee email must match the Slack profile email exactly.

Step 6: Test and Activate Your Workflow

Run an end-to-end test to verify transcript ingestion, summarization, and multi-channel distribution.

  1. Click Test Workflow in n8n and send a sample POST request to Incoming Webhook Trigger with a valid meetingId.
  2. Confirm that Generate Text File creates a Drive file and Share Drive File returns a public link.
  3. Verify Create Notion Note contains the summary sections and the transcript link.
  4. Check that Post to Meeting Channel posts the formatted Slack update and that Email Attendee Recap and DM Each Attendee deliver to recipients.
  5. When successful, switch the workflow to Active to enable production runs.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Slack credentials can expire or need specific permissions. If things break, check your Slack app scopes (chat:write and users:read) and the token used by the “Post to Meeting Channel” node first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Quick Answers

What’s the setup time for this Meet Notion notes automation?

About an hour if you already have Fireflies, Notion, Slack, and Gmail access.

Is coding required for this meeting notes automation?

No. You’ll connect accounts, paste API keys, and map a few fields inside n8n.

Is n8n free to use for this Meet Notion notes workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs (often a few cents per meeting) and your Fireflies.ai plan.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I modify this Meet Notion notes workflow for different use cases?

Yes, and it’s usually just a few node tweaks. You can change the “Post to Meeting Channel” Slack node to target a different channel per team, adjust the “Create Notion Note” node to write into a database instead of a page, or update the Meeting Summary Agent prompt to match your template. Common customizations include adding “Attendees” and “Next meeting date,” inserting a client-safe version for external recaps, or saving action items to a table (Notion or Google Sheets) so they’re assignable.

Why is my Slack connection failing in this workflow?

Usually it’s expired OAuth credentials or missing scopes. Reconnect the Slack credential in n8n, confirm the bot is installed to the right workspace, and verify it has permission to post in the target channel and DM users. If only DMs fail, the “Lookup Slack User” HTTP request may be returning the wrong ID (often email mismatch), so check the attendee emails coming from the calendar step.

What volume can this Meet Notion notes workflow process?

A typical setup handles dozens of meetings a day, and self-hosted n8n has no execution cap (your server is the limit). On n8n Cloud, the practical limit is your plan’s monthly executions. The heavier constraint is usually API rate limits from Slack, Fireflies.ai, or OpenAI if you run large batches at once.

Is this Meet Notion notes automation better than using Zapier or Make?

Often, yes, because the workflow needs structured AI output, parsing, loops for attendee DMs, and conditional logic that gets expensive in simpler tools. n8n also gives you a real self-host option, which is useful when you’re sending a lot of recaps. Zapier or Make can still work if you only want “transcript in, one summary out” with minimal formatting. The moment you want Notion + Slack channel + Slack DMs + Gmail in one run, the complexity adds up. Talk to an automation expert if you want help choosing the simplest path for your stack.

Once this is live, your meetings stop creating busywork. The workflow handles the recap and distribution, so your team can focus on the decisions they just made.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal