Skip to main content

Turn meeting recordings into Jira, ClickUp, and Linear tasks with Whisper and Claude

Workflow preview

Workflow preview
100%
Turn meeting recordings into Jira, ClickUp, and Linear tasks with Whisper and Claude preview
Open on n8n.io

1. Workflow Overview

This AI powered workflow transcribes Zoom/Google Meet recordings, extracts decisions and tasks using AI, then creates tickets in Jira/ClickUp/Linear and assigns them to team members automatically. ...

Best for

  • Project Management automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-base.if, n8n-nodes-base.httprequest, @n8n/n8n-nodes-langchain.openai, n8n-nodes-base.wait, @n8n/n8n-nodes-langchain.agent

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Oneclick AI Squad.

Original n8n.io source

1.1 Workflow description

Title
Turn meeting recordings into Jira, ClickUp, and Linear tasks with Whisper and Claude
Workflow name
Turn meeting recordings into Jira, ClickUp, and Linear tasks with Whisper and Claude

This AI-powered workflow transcribes Zoom/Google Meet recordings, extracts decisions and tasks using AI, then creates tickets in Jira/ClickUp/Linear and assigns them to team members automatically.

How it works

  1. Trigger - Receives meeting recording URL via webhook or schedule
  2. Download Recording - Fetches audio/video file from Zoom/Google Meet
  3. Audio Extraction - Converts video to audio if needed using FFmpeg
  4. Transcription - Uses Whisper API to transcribe meeting audio
  5. Wait & Process - Allows transcription to complete
  6. Parse Transcript - Cleans and formats the transcription text
  7. AI Analysis - Claude extracts action items, decisions, owners
  8. Team Member Matching - Maps names to user IDs in project tools
  9. Create Tasks - Generates tickets in Jira/ClickUp/Linear
  10. Assign & Notify - Assigns tasks to team members and sends notifications
  11. Meeting Summary - Saves full summary to Google Drive/Notion
  12. Response - Returns processed action items and task links

Setup Steps

  1. Import this workflow into your n8n instance
  2. Configure credentials:
  • Zoom OAuth - For downloading Zoom recordings
  • Google OAuth - For Google Meet recordings and Drive storage
  • OpenAI API - For Whisper transcription service
  • Anthropic API - For Claude AI analysis
  • Jira/ClickUp/Linear API - For task creation
  • Slack/Teams - For notifications (optional)
  1. Set up team member mapping in the config node
  2. Configure your project management tool preferences
  3. Activate the workflow

Sample Trigger Payload

{
 "meetingSource": "zoom",
 "recordingUrl": "https://zoom.us/rec/share/...",
 "meetingTitle": "Q1 Planning Meeting",
 "meetingDate": "2024-01-15",
 "attendees": ["[email protected]", "[email protected]", "[email protected]"],
 "projectKey": "PROJ-123",
 "taskTool": "jira",
 "defaultPriority": "medium",
 "autoAssign": true,
 "sendNotifications": true,
 "saveToNotion": false,
 "saveToDrive": true,
 "extractDecisions": true,
 "extractRisks": true,
 "dueDate": "2024-01-22"
}

Features

  • Multi-platform support (Zoom, Google Meet, MS Teams recordings)
  • Accurate transcription using OpenAI Whisper API
  • AI-powered extraction of action items, decisions, risks, and next steps
  • Automatic task creation in Jira, ClickUp, or Linear
  • Smart assignment - maps attendee names to task assignees
  • Meeting summaries - saves comprehensive notes to Drive/Notion
  • Slack/Teams notifications - alerts team members of new tasks
  • Duplicate detection - prevents creating duplicate tickets
  • Priority detection - AI assigns urgency levels to tasks

1.2 Logical Blocks

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.

2. Block-by-Block Analysis

Block 1 - Sticky Note - Documentation

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note - Section 1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Sticky Note - Section 2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note - Section 3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Sticky Note - Section 4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Receive Meeting Recording Webhook

Type / Role
n8n-nodes-base.webhook - webhook
Config choices
Version 2

Block 7 - Validate Config & Build Params

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Check Meeting Source

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2

Block 9 - Download Zoom Recording

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 10 - Download Google Meet Recording

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 11 - Detect File Type

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 12 - Transcribe Audio with Whisper

Type / Role
@n8n/n8n-nodes-langchain.openAi - openAi
Config choices
Version 1

Block 13 - Wait for Transcription

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 14 - Parse & Clean Transcript

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 15 - Analyze Transcript with Claude AI

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 1.6

Block 16 - Claude AI Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatAnthropic - lmChatAnthropic
Config choices
Version 1

Block 17 - Parse Analysis & Match Team Members

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 18 - Route to Task Tool

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2

Block 19 - Create Jira Task

Type / Role
n8n-nodes-base.jira - jira
Config choices
Version 1

Block 20 - Create ClickUp Task

Type / Role
n8n-nodes-base.clickUp - clickUp
Config choices
Version 1

Block 21 - Merge Created Tasks

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 2.1

Block 22 - Send Slack Notification

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.2

Block 23 - Save Summary to Google Drive

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 24 - Generate Summary Document

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Showing the first 24 of 28 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Turn meeting recordings into Jira, ClickUp, and Linear tasks with Whisper and Claude
Complexity advanced
Nodes 28
Categories Project Management, AI Summarization
Author Oneclick AI Squad
Published 17 Apr 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/15114/15114.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

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.

Frequently asked questions

What does Turn meeting recordings into Jira, ClickUp, and Linear tasks with Whisper and Claude do?

This AI powered workflow transcribes Zoom/Google Meet recordings, extracts decisions and tasks using AI, then creates tickets in Jira/ClickUp/Linear and assigns them to team members automatically. ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

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 Project Management, AI Summarization use case.