Pandecho ships a local MCP server and a CLI. Connect them in one click and Claude, Codex, OpenClaw, Hermes — or your own tools — can read your meeting history and answer questions. Nothing ever leaves your machine.
Everything lives in Settings → Automation → CLI & agents inside the Pandecho app.
In Pandecho, click the Settings gear (bottom of the sidebar) → under Automation, choose CLI & agents.
Click Install to PATH to type pandecho-cli from any terminal. macOS asks for your password once to create the symlink.
Under Connect agents, find your agent and click Connect. Pandecho writes its MCP server into that agent's config automatically — no JSON editing.
Restart Claude Desktop / your CLI so it picks up the new MCP server. Then ask it about your meetings (examples below).
Once connected, talk to your agent in plain English — it pulls the answer from your notes on-device.
Pandecho's MCP server exposes five read-only tools. Your agent picks the right one automatically — you just ask in plain English.
| Tool | What it returns |
|---|---|
list_notes | Your meetings, newest first — title, date, participants. |
get_note | A full meeting by id (or "last") — your notes, the AI summary, and the transcript. |
search_notes | Keyword search across titles, notes, summaries, and transcripts. |
get_action_items | The action items from a meeting (defaults to the most recent). |
get_transcript | The raw transcript text of a meeting (or "last"). |
The same surface is available as pandecho-cli — handy for scripts and quick lookups.
$ pandecho-cli list # your meetings, newest first $ pandecho-cli get last # full notes + summary + transcript $ pandecho-cli actions # action items from the latest meeting $ pandecho-cli search "q3 launch" # search everything $ pandecho-cli transcript last # just the transcript $ pandecho-cli list --json # machine-readable output for scripts
If an agent isn't auto-detected (e.g. it isn't installed in a standard location), add Pandecho's MCP server by hand. The server binary lives at /Applications/Pandecho.app/Contents/MacOS/pandecho-notes-mcp.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (Desktop) or ~/.claude.json (Code):
{
"mcpServers": {
"pandecho": {
"command": "/Applications/Pandecho.app/Contents/MacOS/pandecho-notes-mcp"
}
}
}
Add to ~/.codex/config.toml:
[mcp_servers.pandecho]
command = "/Applications/Pandecho.app/Contents/MacOS/pandecho-notes-mcp"
$ openclaw mcp add pandecho --command /Applications/Pandecho.app/Contents/MacOS/pandecho-notes-mcp $ hermes mcp add pandecho --command /Applications/Pandecho.app/Contents/MacOS/pandecho-notes-mcp
The MCP server and CLI read your meeting files directly on your machine and answer through your own agent. There's no Pandecho cloud, no export, and no upload — your meetings stay yours.