granola | Auth: API Key (Bearer token, grn_ prefix)
Two distinct auth provider ids and two parallel sets of tools, so the model can pick personal vs team based on the user’s prompt without guessing which credential to use:
Both flavors call the same public API (
https://public-api.granola.ai/v1/notes) — the difference is which Bearer token gets used at request time. Notes only appear in the response once they have a completed AI summary and transcript.
Tool descriptions are written so the model can disambiguate from natural-language prompts. Personal tools say “your own personal Granola account”; enterprise tools say “your team’s shared Granola Enterprise workspace (notes from teammates included)”.
search_tools will return only the scopes the user has connected.Personal scope
granola.personal.notes.list
Name: List Personal Meeting Notes Lists meeting notes from the user’s own Granola account, paginated.
Output:
granola.personal.notes.get
Name: Get Personal Meeting Note Fetch a single note by ID. Settinginclude_transcript: true returns the full transcript alongside the summary.
Output:
Enterprise scope
granola.enterprise.notes.list and granola.enterprise.notes.get have identical schemas to their personal counterparts. The only difference is the credential used (Granola Enterprise API key vs personal key) and the resulting visibility — enterprise sees notes across the team’s workspace.