Block 1 - 📒 Meeting Notes Distributor – Overview
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
Meeting Notes Distributor – Mailchimp and MongoDB This workflow automatically converts raw meeting recordings or written notes into concise summaries, stores them in MongoDB for future reference, a...
n8n-nodes-base.stickynote, n8n-nodes-base.scheduletrigger, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.splitinbatches, n8n-nodes-base.wait, n8n-nodes-base.code, n8n-nodes-base.set
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io sourceThis workflow automatically converts raw meeting recordings or written notes into concise summaries, stores them in MongoDB for future reference, and distributes the summaries to all meeting participants through Mailchimp. It is ideal for teams that want to keep everyone aligned without manual copy-and-paste or email chains.
| Component | Example Value | Notes |
|---|---|---|
| MongoDB Database | meeting_notes |
Database in which summaries will be stored |
| Collection Name | summaries |
Collection automatically created if it doesn’t exist |
| Mailchimp List | Meeting Participants |
Audience list containing participant email addresses |
| Notes Endpoint | https://example.com/api/meetings/{id} |
Returns raw transcript or note text (JSON) |
This workflow automatically converts raw meeting recordings or written notes into concise summaries, stores them in MongoDB for future reference, and distributes the summaries to all meeting participants through Mailchimp. It is ideal for teams that want to keep everyone aligned without manual copy-and-paste or email chains.
Setup Time: 15-25 minutes
// Inside the Code Node
const rawText = items[0].json.text;
const maxSentences = 5; // adjust to 3, 7, etc.
items[0].json.summary = summarize(rawText, maxSentences);
return items;
// In the Set node before Mailchimp
items[0].json.subject = `Recap: ${items[0].json.meetingTitle} – ${new Date().toLocaleDateString()}`;
return items;
The workflow outputs structured JSON data:
{
"meetingId": "abc123",
"meetingTitle": "Quarterly Planning",
"summary": "Key decisions on roadmap, budget approvals...",
"participants": [
"[email protected]",
"[email protected]"
],
"mongoInsertId": "65d9278fa01e3f94b1234567",
"mailchimpBatchIds": ["2024-01-01T12:00:00Z#1", "2024-01-01T12:01:00Z#2"]
}
Pro Tips:
This is a community template provided “as-is” without warranty. Always validate the workflow in a test environment before using it in production.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
Showing the first 24 of 25 workflow blocks. Download the JSON for the full node graph.
| Workflow | Send meeting summaries with Mailchimp and MongoDB |
|---|---|
| Complexity | advanced |
| Nodes | 25 |
| Categories | Document Extraction, AI Summarization |
| Author | vinci-king-01 |
| Published | 16 Jan 2026 |
Use the JSON export at /data/workflows/12760/12760.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Meeting Notes Distributor – Mailchimp and MongoDB This workflow automatically converts raw meeting recordings or written notes into concise summaries, stores them in MongoDB for future reference, a...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction, AI Summarization use case.