granola
Granola Meeting Intelligence
Access Joel's Granola meeting notes via the granola CLI, which wraps the Granola MCP server through mcporter.
Setup
- Binary:
~/.local/bin/granola - Source:
~/Code/joelhooks/granola-cli - Config:
~/.config/granola-cli/mcporter.json - Transport: MCP via mcporter (NOT direct API, NOT npm package)
- Auth: Uses Granola's local credentials automatically
CLI Commands
List meetings
granola meetings [--range this_week|last_week|last_30_days|custom] [--start YYYY-MM-DD] [--end YYYY-MM-DD]
Get meeting details (summary, participants)
granola meeting <meeting-id>
Get full transcript
granola meeting <meeting-id> --transcript
Search meetings
granola search "<query>"
Check auth/connection
granola --help
Returns "connected": true if MCP transport is working.
Output Format
All commands return agent-first JSON with HATEOAS next_actions:
{
"ok": true,
"command": "granola meetings",
"result": { ... },
"next_actions": [
{ "command": "granola meeting <id>", "description": "Get details" }
]
}
Important Notes
- Timestamps are UTC. Granola returns all dates in UTC. A meeting showing "5:01 PM" on Feb 26 is actually 9:01 AM PST. Always convert when displaying to Joel or writing to Vault files.
- Codex cannot run Granola. The MCP transport (mcporter) requires a local socket that Codex sandboxes can't open (
EPERM). Always pull transcripts from pi/gateway sessions, not codex tasks.
Known Limitations
- Rate limiting:
get_meeting_transcriptendpoint rate-limits aggressively. Don't batch transcript pulls — space them out. - Concurrency: Keep concurrency at 1 for transcript fetches. Original concurrency of 3 overwhelmed the API.
- Granola app not required locally: The MCP server handles auth via stored creds, Granola desktop app does NOT need to be running.
MCP Tools (underlying)
The granola CLI wraps these MCP tools:
query_granola_meetings— NL search with citationslist_meetings— by time rangeget_meetings— details by ID arrayget_meeting_transcript— verbatim transcript by ID
Pipeline Integration
When a new meeting is detected, fire an Inngest event:
curl -X POST "http://localhost:8288/e/$EVENT_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "meeting/noted",
"data": {
"meeting_id": "<id>",
"title": "<title>",
"date": "<YYYY-MM-DD>",
"source": "granola",
"participants": ["Person A", "Person B"]
}
}'
Inngest functions that process meetings:
check/granola-meetings— event-triggered check for new meetingsgranola-check-cron— hourly cron (7 * * * *) polling for new meetingsgranola-backfill— bulk backfill all meetings
Related
- ADR-0055: Granola Meeting Intelligence Pipeline
- Source repo:
~/Code/joelhooks/granola-cli - Inngest functions:
packages/system-bus/src/inngest/functions/check-granola.ts - Meeting analysis:
packages/system-bus/src/inngest/functions/meeting-analyze.ts - Transcript indexing:
packages/system-bus/src/inngest/functions/meeting-transcript-index.ts
More from joelhooks/joelclaw
cli-design
Design and build agent-first CLIs with HATEOAS JSON responses, context-protecting output, and self-documenting command trees. Use when creating new CLI tools, adding commands to existing CLIs (joelclaw, slog), or reviewing CLI design for agent-friendliness. Triggers on 'build a CLI', 'add a command', 'CLI design', 'agent-friendly output', or any task involving command-line tool creation.
129k8s
>-
88docker-sandbox
Create, manage, and execute agent tools (claude, codex) inside Docker sandboxes for isolated code execution. Use when running agent loops, spawning tool subprocesses, or any task requiring process isolation. Triggers on "sandbox", "isolated execution", "docker sandbox", "safe agent execution", or when working on agent loop infrastructure.
86joel-writing-style
Joel's writing voice and style guide for joelclaw.com content. Use when writing, editing, or reviewing any blog post, essay, book chapter, or prose content for joelclaw.com. Also use when asked to 'write like Joel,' 'match Joel's voice,' 'draft a post,' 'write content for the blog,' or 'review this for voice.' This skill captures Joel's specific writing patterns derived from ~90,000 words of published content spanning 2012–2026. Cross-reference with copy-editing and copywriting skills for marketing-specific copy.
81task-management
Manage Joel's task system in Todoist. Triggers on: 'add a task', 'create a todo', 'what's on my list', 'today's tasks', 'what do I need to do', 'remind me to', 'inbox', 'complete', 'mark done', 'weekly review', 'groom tasks', 'what's next', or when actionable items emerge from other work. Also triggers when Joel mentions something he needs to do in passing — capture it.
54skill-review
Audit and maintain the joelclaw skill inventory. Use when checking skill health, fixing broken symlinks, finding stale skills, or running the skill garden. Triggers: 'skill audit', 'check skills', 'stale skills', 'skill health', 'skill garden', 'broken skill', 'skill review', 'fix skills', 'garden skills', or any task involving skill inventory maintenance.
49