Micky CLI · MCP
The official guide to using your meeting knowledge from the terminal and AI agents. From install to Claude Code in about five minutes.
Overview
There are two ways to use it. Most people connect Micky to their own AI (Claude Code, Cursor, Codex, Gemini) and just ask in plain language — no commands to memorize, like “what did we decide about this last meeting?” Typing commands in the terminal is a separate path, for scripts and automation. Install, log in, then connect your AI below — a few minutes total.
- Node.js 18+ (includes npm)
- A Micky account — read commands with login; AI generation (ask · digest) on beta-approved accounts
- macOS · Linux · Windows (WSL recommended)
1. Install
Install globally with npm. No registry login needed — it pulls straight from GitHub Releases.
npm install -g https://github.com/Marco-Joshua/micky-cli-releases/releases/download/v0.1.3/micky-ai-0.1.3.tgzOnce installed, verify with:
micky --version2. Log in
A browser opens; sign in with Google and the session is stored securely for the CLI (~/.micky). One time only.
micky login3. Connect your AI · ask in plain language (MCP)
This is the main way to use Micky. Turn on MCP (Model Context Protocol) and your AI sees your meetings as tools. Instead of commands, just talk to it normally — ask “what did we decide about this last meeting?” and it finds the meeting and answers on its own.
Register once for the agent you use. Running the command prints a config snippet — drop it in as shown.
micky mcp install claudeOther MCP clients like Cursor: paste the config snippet the command prints into their MCP settings.
Tools your agent gains
- semantic_search — find meetings by meaning (free)
- create_digest — combine meetings into one artifact
- ask_micky — ask across meeting knowledge
- list_meetings · get_meeting · get_transcript — read meetings
- list_action_items — open actions across meetings
- open_loops — open commitments bucketed by urgency
- get_usage — check usage
Now just tell your AI things like
Use cases
In the terminal, and inside your AI agent — here's what it looks like in practice.
You need meeting context mid-code
Claude Code / Cursor finds that meeting and answers — no digging through Slack, right in your flow.
Weekly team roundup
Every meeting's to-dos on one page, grouped by owner. Cron it and get it every week.
A 5-second brief before a call
Surfaces the meeting where it came up — free, and by meaning even when the words differ.
Delegate work per a decision
The agent references the decision and writes the code — no re-explaining the spec.
Terminal commands (advanced)
You don't need to memorize commands — connecting your AI above and asking in plain language is the default. Use these for scripts, CI, cron, or when you prefer the terminal. Add `--json` to any command for script-friendly JSON.
| Command | What it does | Cost |
|---|---|---|
| micky meetings | List your recent meetings | Free |
| micky meeting <id> | One meeting: metadata + summary + decisions + actions | Free |
| micky transcript <id> | Full transcript text | Free |
| micky search "<query>" | Keyword search over titles and summaries | Free |
| micky search "<query>" --semantic | Rank meetings by meaning (embeddings) — context, not keywords | Free |
| micky digest <id...> --mode <mode> | Combine meetings (summary · actions · decisions · email) | LLM |
| micky ask "<question>" | Ask across all your meeting knowledge (RAG) | LLM |
| micky actions | Open action items across all meetings | Free |
| micky loops | Open commitments bucketed by urgency (overdue · dueSoon · upcoming · undated) | Free |
| micky export <id> -o note.md | Export a meeting to Markdown | Free |
| micky usage | Credits & recording usage | Free |
Troubleshooting
AI-generating commands run on beta-approved accounts. Check status with micky usage. Read commands (search · transcript · export) work with just login.
The meetings may not be embedded yet. They're indexed automatically shortly after a meeting ends — wait a moment and retry.
Confirm the install finished and open a fresh terminal. Get the latest version from Releases below.