A Claude Code plugin for accessing Granola meeting notes, transcripts, and summaries.
- List meetings - View recent meetings with participants and dates
- Show meeting details - See full notes and transcripts
- Search meetings - Find meetings by title, content, or participant
- Export to markdown - Create markdown files with YAML frontmatter
# Add the Focus marketplace (if not already added)
/plugin marketplace add The-Focus-AI/claude-marketplace
# Install the plugin
/plugin install granola-skill@focus-marketplaceThen restart Claude Code.
# Clone the repo
git clone https://github.com/The-Focus-AI/granola-skill.git
# Install dependencies
cd granola-skill
pnpm install
# Build
pnpm run build
# Install as Claude Code plugin
claude /plugin install ./- macOS with Granola desktop app installed
- Node.js 18+
- Claude Code
Once installed, the skill activates automatically when you mention:
- "meeting notes"
- "what did we discuss"
- "find meeting"
- "meeting transcript"
- "recent meetings"
# List recent meetings
./bin/granola.js list --days 7
# Show meeting with transcript
./bin/granola.js show <meeting-id> --transcript
# Search meetings
./bin/granola.js search "product review"
# Export to markdown
./bin/granola.js export <meeting-id> --output ./meetingsThis skill reads Granola's local cache file (~/Library/Application Support/Granola/cache-v3.json) directly. No API keys or authentication required.
The cache uses a double-JSON structure - the outer JSON contains a cache key whose value is a JSON string that must be parsed separately.
MIT