Sample workflows
Copy-paste recipes with runnable Python, Node, and Rust scripts, one for each way to drive Meetily.
Four end-to-end recipes, each with a runnable script in Python, Node, and Rust. They map to the four ways to drive Meetily: the HTTP API, the meetily-pro CLI, webhooks, and a custom MCP client.
Before you run any of these
- Turn on Integrations in the app (see the Quickstart). The gateway listens on
http://127.0.0.1:8420. - For the API and webhook recipes, you need a token. On the same machine the CLI and SDK read the local token automatically; for a raw script, confirm your identity and scopes with
meetily-pro whoami, then export the token asMEETILY_PRO_TOKENfor the script to read.
Pick a recipe
Back up meetings over the API
List and export your meetings with raw HTTP. Best for data and reporting.
Drive a recording from a script
Shell out to the meetily-pro CLI. Best for quick control from a script.
Receive and verify webhooks
Get pushed a notification when a summary is ready, and verify its signature.
Drive Meetily from your own MCP client
Speak JSON-RPC to the MCP server over stdio. For building a custom AI client.
Not sure which surface fits? See the client coverage matrix on the endpoint reference: not every operation exists on every client, so the matrix tells you which one to reach for.
Last updated on
