Browse docs

Set up Meeting.ai CLI

Last updated September 23, 2026

Install the Meeting.ai CLI to use your meetings from a terminal or an agent that can run commands.

Install memo

The public installer supports macOS and Linux on arm64 and amd64. It downloads the matching release, checks its SHA-256 checksum, and adds memo to your path. You can read the installer on GitHub before running it.

curl -fsSL https://raw.githubusercontent.com/meeting-ai/memo-cli/main/install.sh | bash

Open a new terminal so it picks up memo on your path, then check the installation:

memo version

The installer also adds the Meeting.ai agent skill to the agent directories it finds. If you add another agent later, run memo install-skill-md again.

Sign in and choose a workspace

memo auth login
memo auth status
memo workspace list
memo workspace set <team_id>

memo auth login opens Meeting.ai in your browser. Sign in without pasting an API key. memo auth status confirms the account. If you have more than one workspace, take its id from memo workspace list and pass that value as <team_id> to memo workspace set. Later commands use the active workspace. The session is stored encrypted on your machine and can be revoked in Settings › MCP & CLI.

Read your first meeting

memo meetings list
memo meetings search --keyword "planning"
memo meetings get <id> --all

Commands print JSON, so an agent or script can read the result. Run memo --help or memo meetings --help to see more commands. For contacts, Drive files, exports, and media tools, see the Meeting.ai CLI repository on GitHub.