-
Notifications
You must be signed in to change notification settings - Fork 35
feat: Add Granola meeting notes skill #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
idonotwritecode2342
wants to merge
3
commits into
zocomputer:main
Choose a base branch
from
idonotwritecode2342:community/granola
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| { | ||
| "specVersion": "0.1.0", | ||
| "icon": "microphone", | ||
| "tags": [ | ||
| "productivity", | ||
| "meetings", | ||
| "notes", | ||
| "ai" | ||
| ], | ||
| "integrations": [ | ||
| "granola" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| --- | ||
| name: granola | ||
| description: Access your Granola meeting notes, transcripts, and AI summaries via the Granola MCP server. Use when the user asks to search, retrieve, summarize, or work with their meeting notes from Granola. | ||
| metadata: | ||
| author: tanveer-ai-gb | ||
| category: Community | ||
| display-name: Granola Meeting Notes | ||
| emoji: 🎙️ | ||
| --- | ||
|
|
||
| # Granola Meeting Notes | ||
|
|
||
| Access your Granola meeting notes, transcripts, folders, and AI summaries using the Granola MCP server. No API key required — authentication is handled via browser OAuth. | ||
|
|
||
| ## Setup | ||
|
|
||
| Connect Granola to Zo once with these steps: | ||
|
|
||
| 1. Add the Granola MCP server: | ||
|
|
||
| ```bash | ||
| claude mcp add granola --transport http https://mcp.granola.ai/mcp | ||
| ``` | ||
|
|
||
| 2. Authenticate: restart the session and run `/mcp`, select `granola`, then choose **Authenticate** to complete the browser OAuth sign-in. | ||
|
|
||
| > **Requirements:** A Granola account with existing meeting notes. Free accounts can access notes from the last 30 days; paid accounts get full history including shared notes and private folders. | ||
|
|
||
| ## Available Tools | ||
|
|
||
| Once connected, the following MCP tools are available: | ||
|
|
||
| | Tool | Description | | ||
| |------|-------------| | ||
| | `query_granola_meetings` | Chat with your notes — ask questions, extract action items, get insights | | ||
|
Comment on lines
+31
to
+35
|
||
| | `list_meetings` | Scan your meeting list | | ||
| | `get_meetings` | Search meeting content | | ||
| | `get_meeting_transcript` | Access full transcripts (paid plans only) | | ||
| | `list_meeting_folders` | View your meeting folders (paid plans only) | | ||
|
|
||
| ## Usage Examples | ||
|
|
||
| Once the MCP server is connected, you can ask Zo things like: | ||
|
|
||
| - *"What did we decide in my last product meeting?"* | ||
| - *"List all my meetings from this week"* | ||
| - *"Get the transcript from my standup yesterday"* | ||
| - *"What action items came out of my meetings today?"* | ||
| - *"Search my notes for anything about the Q3 budget"* | ||
|
|
||
| Zo will use the appropriate MCP tool to answer directly from your Granola notes. | ||
|
|
||
| ## Fallback: REST API | ||
|
|
||
| If MCP is unavailable, you can use the Granola REST API directly with a Personal API key (requires Business or Enterprise plan). | ||
|
|
||
| **Get an API key:** Granola desktop app → Settings → API → Create new key | ||
|
|
||
| **Store it securely:** Save the key as `GRANOLA_API_KEY` in [Settings → Developers](/settings#developers). Never paste the raw key into chat or commit it to files — reference it only via the environment variable. | ||
|
|
||
| **Base URL:** `https://public-api.granola.ai/v1` | ||
| **Auth header:** `Authorization: Bearer $GRANOLA_API_KEY` | ||
|
|
||
|
idonotwritecode2342 marked this conversation as resolved.
|
||
| ```bash | ||
| # List recent notes | ||
| curl "https://public-api.granola.ai/v1/notes?page_size=10" \ | ||
| -H "Authorization: Bearer $GRANOLA_API_KEY" | ||
|
|
||
| # Get a specific note with transcript | ||
| curl "https://public-api.granola.ai/v1/notes/not_XXXXXXXXXXXXXX?include=transcript" \ | ||
| -H "Authorization: Bearer $GRANOLA_API_KEY" | ||
| ``` | ||
|
|
||
| REST API rate limits: 25 requests burst / 5 per second sustained. Returns `429` when exceeded. | ||
|
|
||
| > Note IDs use the format `not_[14 alphanumeric chars]`. Only notes with a completed AI summary appear in responses. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.