Skip to main content
Meetily Pro 1.11.0

Meetily Workflows: Send Meeting Notes Where Your Team Works

A Meetily workflow is a short script or an AI assistant that takes your meeting notes somewhere useful: an Obsidian vault, a Notion page, Jira or GitHub issues, a Slack channel or your CRM. Meetily Pro 1.11.0 gives you the pieces (signed webhooks, the meetily-pro CLI, a local API and an MCP server) and your script or assistant does the last step. Meetily has no built-in connectors for these apps.

  • Obsidian
  • Notion
  • Jira & GitHub
  • Slack & CRM
  • React the moment a summary is ready
  • Export Markdown, text or JSON
  • Destinations you approve in the app
  • Meetings recorded and transcribed on your computer

How Does a Meetily Workflow Run?

Most workflows follow the same three steps

1. The Meeting Ends

Meetily records and transcribes on your computer. With Auto Summary turned on in Summary settings, it then writes the summary with a local model or your own API key.

2. Meetily Sends a Webhook

A signed summary.completed webhook tells a script on your computer which meeting is ready.

3. Your Script Sends the Notes

The script exports the meeting with meetily-pro and posts it to Obsidian, Notion, Jira, Slack or your CRM.

Workflow recipes

Last updated: Reviewed by the Meetily team

How do I save meeting notes to Obsidian automatically?

Subscribe a small script on your computer to the summary.completed webhook. When it fires, the script takes the meeting ID from the webhook and exports that meeting as Markdown straight into your vault:

Code language: bash
meetily-pro webhooks add --url http://127.0.0.1:9002/meetily --events summary.completed

# in your script, for the meeting ID the webhook delivered:
meetily-pro meetings export "$MEETING_ID" --format md > ~/Obsidian/Meetings/"$MEETING_ID".md

What you need: Allow the CLI on this computer turned on (Integrations > Apps & scripts) and Auto Summary turned on. Under Integrations > Advanced, turn on Outgoing (webhooks) and add your script’s address as a local target before you add the webhook, then approve the destination when Meetily asks. Meetily must be running.

How do I send meeting summaries to Notion?

Same trigger, different destination: when summary.completed arrives, your script exports the meeting and creates a page through Notion’s own API. Or skip the script and ask an AI assistant that has access to both Meetily and Notion to copy yesterday’s summary into your meetings database.

What you need: The webhook setup from the Obsidian recipe (or a connected assistant), and a Notion integration token for your script.

How do I turn meeting action items into Jira, Linear or GitHub issues?

Two routes. Ask a connected AI assistant that also has access to your tracker: “file the action items from today’s sprint planning as issues.” Or export the meeting as JSON in a script and create the issues through your tracker’s API. A custom summary template that always lists owners and action items under the same headings makes the notes easier for a script to parse.

What you need: Read permission. Meetily does not file issues itself; your assistant or script uses the tracker access you gave it.

How do I post a meeting summary to Slack after every meeting?

Have your script listen for summary.completed, read the summary, and post it to a Slack incoming webhook for the channel you choose. The developer docs have a step-by-step Slack summary guide.

What you need: Auto Summary turned on, the webhook setup from the Obsidian recipe, and a Slack incoming webhook URL.

How do I update my CRM after a sales call?

Export the call as JSON when its summary is ready and write the summary and next steps to the contact or deal record with your CRM’s API. If you want this with no scripting at all, a cloud meeting assistant with a native CRM connector is the better fit; Meetily is built for teams that want the recording and transcript to stay on their own machines.

What you need: The webhook setup from the Obsidian recipe, and an API key for your CRM.

How do I back up all my meetings?

List your meetings and export each one as JSON (the default format) to a folder you back up. The developer docs have a backup and batch export guide.

Code language: bash
meetily-pro meetings list --limit 100 --json
meetily-pro meetings export <meeting-id> > backup/<meeting-id>.json

What you need: Read permission: allowing the CLI in the app is enough. Meetily must be running.

Setup guides with screenshots and example workflows live in the meetily-workflows repository and the developer docs.

New to the pieces? Start with the Meetily MCP server and the Meetily CLI.

Meetily Workflows: Common Questions

No. Meetily has no native connectors for those apps. Meetily Pro gives you the pieces instead: signed webhooks, the meetily-pro command-line tool, a local API and an MCP server for AI assistants. Your own script or assistant does the last step.
For webhooks and scripts, yes, usually a short script. For the AI assistant route, no: connect Claude, Codex, Cursor or Windsurf and ask it to do the step, as long as it has access to the other app.
It would not get far. Webhook payloads carry meeting IDs, not the notes, and the API that serves the notes listens only on your own computer, so a service running in the cloud cannot fetch them. Run the script on the same computer as Meetily.
Yes. Webhooks come from the running app, and scripts read meetings through its local API, so keep Meetily open with Integrations turned on.
Yes. The webhooks, CLI, local API and MCP server are part of Meetily Pro ($10/user/month billed annually) and are included in the 14-day trial. The free Community Edition does not include them.
The meetily-workflows repository on GitHub has setup guides with screenshots and example workflows, and the Meetily developer docs include guides such as posting a summary to Slack and backing up meetings.

Build Your First Meetily Workflow

Webhooks, the CLI, the local API and the MCP server are part of Meetily Pro: $10/user/month billed annually, with a 14-day trial.

✅ Signed Webhooks · ✅ meetily-pro CLI · ✅ MCP Server · ✅ Local by Default

Why Choose Meetily Pro?

Privacy-First Architecture

Transcription runs 100% locally; recordings and audio never leave your device. For summaries, you choose your provider: local AI or your own API key. Compliant by design with GDPR and HIPAA workflows.

Advanced AI Features

Real-time transcription, speaker identification, action item extraction, meeting summaries, and custom AI workflows.

Priority Support

Dedicated support team, direct access to engineers, custom integration assistance, and priority bug fixes.

Flexible Deployment

On-Device deployment. Local file access for custom integrations and workflows.

Buy Now

Have questions? or join our GitHub community