Skills granola
Access Granola AI meeting notes via MCP (mcporter). Query meetings, list by date range, get full details, and pull verbatim transcripts. Use when the user asks about meeting notes, what was discussed, action items, decisions, or anything from their meetings. Also handles OAuth token refresh when calls fail with auth errors.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bholagabbar/granola-mcp" ~/.claude/skills/openclaw-skills-granola && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/bholagabbar/granola-mcp" ~/.openclaw/skills/openclaw-skills-granola && rm -rf "$T"
manifest:
skills/bholagabbar/granola-mcp/SKILL.mdsource content
Granola MCP
Meeting notes AI connected via
mcporter call granola.<tool>.
Tools
granola.query_granola_meetings query=<string> [document_ids=<uuid[]>] granola.list_meetings [time_range=this_week|last_week|last_30_days|custom] [custom_start=<ISO>] [custom_end=<ISO>] granola.get_meetings meeting_ids=<uuid[]> (max 10) granola.get_meeting_transcript meeting_id=<uuid>
Usage Pattern
- For open-ended questions ("what did we discuss about X?"), use
query_granola_meetings - For listing meetings in a range, use
list_meetings - For full details on specific meetings, use
with IDs from list resultsget_meetings - For exact quotes or verbatim content, use
get_meeting_transcript
Prefer
query_granola_meetings over list+get for natural language questions. Responses include citation links (e.g. [[0]](url)). Preserve these in replies so the user can click through to original notes.
Setup
- Complete the Granola OAuth flow at
https://mcp-auth.granola.ai/oauth2/authorize - Save credentials to
with keys:config/granola_oauth.json
,client_id
,refresh_token
,access_tokentoken_endpoint - Configure
with the Granola MCP server entry andconfig/mcporter.json
headerAuthorization: Bearer <token> - (Optional) Set up a cron job to run
periodically, since OAuth tokens expire every ~6 hoursscripts/refresh_token.sh
Auth & Token Refresh
If a call fails with 401/auth error:
bash {baseDir}/scripts/refresh_token.sh
The script reads
config/granola_oauth.json, posts to the token endpoint (https://mcp-auth.granola.ai/oauth2/token), and updates both config/granola_oauth.json and config/mcporter.json with the new access token.
Then retry the call. If refresh also fails, the user needs to re-authenticate manually via the OAuth flow above.
Config Files
— OAuth credentials (client_id, refresh_token, access_token, token_endpoint). Contains secrets; do not commit.config/granola_oauth.json
— MCP server config with bearer token header. Contains secrets; do not commit.config/mcporter.json