Granola MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Granola MCP ServerSummarize the key decisions from yesterday's product sync"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Granola MCP Server (Experimental)
An experimental Model Context Protocol (MCP) server for integrating Granola.ai meeting intelligence with Claude Desktop. This uses Granola's local cache. I don't have any idea how Granola updates or maintains that cache. My guess is that it's doing a rolling context window, but storing long term notes up in AWS. So, YMMV. Use at your own risk. I will likely add a cache shipper at some point since we don't have access to Gronala's data in the cloud.
Features
Meeting Search: Search meetings by title, content, participants, and transcript content
Meeting Details: Get comprehensive meeting metadata with local timezone display
Full Transcript Access: Retrieve complete meeting conversations with speaker identification
Rich Document Content: Access actual meeting notes, summaries, and structured content
Pattern Analysis: Analyze patterns across meetings (participants, frequency, topics)
Timezone Intelligence: All timestamps automatically display in your local timezone
Real-time Integration: Seamlessly connects to your actual Granola meeting data
Related MCP server: granola-mcp
Quick Start
Prerequisites
Python 3.12+
uv package manager
macOS with Granola.ai installed
Claude Desktop application
Granola cache file at
~/Library/Application Support/Granola/cache-v3.json
Installation
Clone the repository to your home directory:
cd ~ git clone <repository-url> cd granola-ai-mcp-serverImportant: Clone to your home directory (
~) rather than~/Documentsto avoid macOS permission issues with Claude Desktop.Install dependencies with uv:
uv syncTest the installation:
uv run python test_server.pyConfigure Claude Desktop by adding to your
claude_desktop_config.json:{ "mcpServers": { "granola": { "command": "/Users/YOUR_USERNAME/granola-ai-mcp-server/.venv/bin/granola-mcp-server", "args": [], "env": {} } } }Important:
Replace
YOUR_USERNAMEwith your actual macOS usernameUse the direct path to the virtual environment's script (not
uv run) to avoid working directory issuesThe path should point to your home directory installation
Restart Claude Desktop to load the MCP server:
# Quit Claude completely osascript -e 'quit app "Claude"' # Reopen Claude open -a "Claude"
Available Tools
search_meetings
Search meetings by query string.
Parameters:
- query (string): Search query for meetings
- limit (integer, optional): Maximum number of results (default: 10)get_meeting_details
Get detailed information about a specific meeting.
Parameters:
- meeting_id (string): Meeting ID to retrieve details forget_meeting_transcript
Get transcript for a specific meeting.
Parameters:
- meeting_id (string): Meeting ID to get transcript forget_meeting_documents
Get documents associated with a meeting.
Parameters:
- meeting_id (string): Meeting ID to get documents foranalyze_meeting_patterns
Analyze patterns across multiple meetings.
Parameters:
- pattern_type (string): Type of pattern to analyze ('topics', 'participants', 'frequency')
- date_range (object, optional): Date range for analysis with start_date and end_dateUsage Examples
Once configured with Claude Desktop, you can use natural language to interact with your Granola meetings:
Basic Queries
"Search for meetings about quarterly planning"
"Show me yesterday's meetings"
"Find meetings with David from this week"
Transcript Access
"Get the transcript from yesterday's ProofChat meeting"
"What was discussed in the Float rollback planning meeting?"
"Show me the full conversation from the David Tibbi meeting"
Content Analysis
"Analyze participant patterns from last month"
"What documents are associated with the product review meeting?"
"Search for mentions of 'schema labeling' in meeting transcripts"
Recent Meeting Intelligence
The server automatically detects and provides access to:
Full transcripts from recent meetings (25,000+ characters)
Meeting content including notes and summaries
Participant information and speaker identification
Local timezone display for all meeting times
Development
Running Tests
uv run python test_server.pyRunning the Server Directly
uv run granola-mcp-serverAdding Dependencies
uv add package-nameConfiguration
Claude Desktop Config Locations
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Granola Cache Location
The server reads from Granola's cache file at:
~/Library/Application Support/Granola/cache-v3.jsonSecurity & Privacy
✅ 100% Local Processing - All data stays on your machine
✅ No External API Calls - No data sent to external services
✅ Granola Permissions Respected - Uses existing Granola.ai access controls
✅ Read-Only Access - Server only reads from Granola's cache
Performance & Capabilities
Fast Loading: Sub-2 second cache loading for hundreds of meetings
Rich Content: Extracts 25,000+ character transcripts and meeting notes
Efficient Search: Multi-field search across titles, content, participants, and transcripts
Memory Optimized: Lazy loading with intelligent content parsing
Timezone Smart: Automatic local timezone detection and display
Production Ready: Successfully processes real Granola data (11.7MB cache files)
Scalable: Handles large datasets with 500+ transcript segments per meeting
Current Status
🚀 PRODUCTION READY - Successfully tested with real Granola.ai data including:
✅ 39+ meetings parsed and searchable
✅ 28 full transcripts with complete conversations
✅ Rich meeting content from notes, summaries, and structured data
✅ Timezone intelligence showing times like "17:04" instead of "21:04 UTC"
✅ Speaker identification and conversation flow
✅ Yesterday's meetings fully accessible with detailed content
Troubleshooting
Common Issues
"Cache file not found"
Ensure Granola.ai is installed and has processed some meetings
Check that the cache file exists:
ls -la "~/Library/Application Support/Granola/cache-v3.json"
"uv command not found"
Install uv:
curl -LsSf https://astral.sh/uv/install.sh | shOr use pip fallback in Claude config:
"command": "python"
"Permission denied" or "Operation not permitted"
Most common issue on macOS: This happens when the server is installed in
~/Documentsor other protected foldersSolution 1 (Recommended): Move the installation to your home directory:
mv ~/Documents/granola-ai-mcp-server ~/granola-ai-mcp-server cd ~/granola-ai-mcp-server uv sync # Rebuild venv with correct pathsThen update the path in
claude_desktop_config.jsonSolution 2: Grant Claude Desktop Full Disk Access:
Open System Settings → Privacy & Security → Full Disk Access
Click the lock icon and authenticate
Click "+" and add
/Applications/Claude.appToggle Claude to "On"
Restart Claude Desktop
"Current directory does not exist"
This error occurs when using
uv runwith the--directoryflagUse the direct path to the venv script instead (see Installation step 4)
Server not appearing in Claude Desktop
Verify the absolute path in your Claude config
Check Claude Desktop logs:
~/Library/Logs/Claude/mcp-server-granola.logLook for Python errors in the logs
Ensure the path doesn't contain spaces or special characters
Restart Claude Desktop after config changes
"Failed to spawn process" or "No such file or directory"
The Python shebang in the venv script points to the wrong location
Run
uv syncin the project directory to rebuild the venvVerify the script exists:
ls -la ~/granola-ai-mcp-server/.venv/bin/granola-mcp-server
Meeting notes appear empty in Claude
Granola sometimes stores rich notes inside
documentPanelsrather thannotes_plainThis server now reads those panels by default; set
GRANOLA_PARSE_PANELS=0in the environment to disableRun
python test_real_cache.pyto verify that panel-backed notes produce content
Available Tools
5 toolsanalyze_meeting_patternsC
Analyze patterns across multiple meetings
| Name | Required | Description | Default |
|---|---|---|---|
| pattern_type | Yes | Type of pattern to analyze (topics, participants, frequency) | |
| date_range | No | Optional date range for analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description should disclose behavioral traits like read-only nature or response behavior. It does not add any such information beyond the tool's name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded, but it is minimal. It could benefit from a bit more detail without being verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite complete schema coverage, the description lacks context about output, behavior, and proper usage. For a tool with nested objects and no output schema, more information is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds no additional meaning to the parameters beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function of analyzing patterns across meetings, which distinguishes it from sibling tools that retrieve individual meeting details or documents. However, it could be more specific about what patterns are analyzed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description does not mention prerequisites, context, or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_meeting_detailsB
Get detailed information about a specific meeting
| Name | Required | Description | Default |
|---|---|---|---|
| meeting_id | Yes | Meeting ID to retrieve details for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does not disclose behavioral traits such as the type of detailed information included, access restrictions, or performance implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, efficient but too brief given the lack of annotations; it could include more context without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple but the description does not specify what 'detailed information' includes or return format, leaving gaps in contextual completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear parameter description, so baseline is 3. The description adds no additional meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'get' and the resource 'detailed information about a specific meeting', distinguishing it from sibling tools like get_meeting_documents and get_meeting_transcript.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like search_meetings or analyze_meeting_patterns, nor any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_meeting_documentsC
Get documents associated with a meeting
| Name | Required | Description | Default |
|---|---|---|---|
| meeting_id | Yes | Meeting ID to get documents for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only states what it does but not behavioral traits like read-only nature, permissions needed, or rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no fluff; front-loaded with purpose, but could be slightly more detailed without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Simple tool with one parameter but no output schema; description lacks details about return format or content, which is needed for agent to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3; description adds no extra meaning beyond the schema's parameter description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and resource 'documents associated with a meeting', making it distinct from siblings like get_meeting_details or get_meeting_transcript.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives; no comparison to siblings or mention of prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_meeting_transcriptB
Get transcript for a specific meeting
| Name | Required | Description | Default |
|---|---|---|---|
| meeting_id | Yes | Meeting ID to get transcript for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description does not disclose any behavioral traits such as read-only nature, required permissions, error conditions, or return format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence that is front-loaded and to the point. No redundant words, so every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema), the description is minimally adequate. However, it lacks any behavioral context that could help an agent handle errors or understand return data.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but the parameter description ('Meeting ID to get transcript for') adds little beyond the parameter name. Baseline 3 due to high coverage, no extra meaning added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and specific resource 'transcript for a specific meeting', distinguishing it from siblings like get_meeting_details (details) and get_meeting_documents (documents).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use or not use the tool, no mention of alternatives like search_meetings for finding meetings. Usage is only implied by the action.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_meetingsA
Search meetings by title, content, or participants
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for meetings | |
| limit | No | Maximum number of results |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It states the search fields but omits key behaviors: whether the tool returns full meeting details or summaries, whether it supports pagination, or if it is read-only. The limit parameter hints at maximum results, but the return format is not described.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of seven words, which is highly concise. It front-loads the main action and is efficiently structured. However, it could include a brief mention of the return type without significantly increasing length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema and annotations, the description is incomplete. It does not explain what the search returns (e.g., a list of meeting summaries with IDs), nor does it mention how the limit parameter is applied. Sibling tools are not referenced to guide the agent's flow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the input schema already documents both parameters ('Search query for meetings' and 'Maximum number of results'). The description adds no extra meaning beyond the schema, meeting the baseline for full coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function as searching meetings and specifies the searchable fields (title, content, or participants). This distinguishes it from sibling tools like get_meeting_details (for a single meeting) or get_meeting_documents (for attachments), making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is given on when to use this tool versus siblings. The description implies usage for search scenarios but lacks instructions on prerequisites, fallbacks, or alternative tools. For example, it does not mention that search results can be used to obtain meeting IDs for subsequent detail lookups.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.0.0-development- First observed
analyze_meeting_patterns - First observed
get_meeting_details - First observed
get_meeting_documents - First observed
get_meeting_transcript - First observed
search_meetings
TDQS
Each tool has a clearly distinct purpose: analyzing patterns, retrieving details, documents, transcripts, or searching meetings. No overlap or ambiguity.
All tools follow a consistent verb_noun pattern with lowercase and underscores, e.g., analyze_meeting_patterns, get_meeting_details. No mixing of styles.
With 5 tools, the set is well-scoped for a meeting analysis server. Each tool serves a core need without redundancy or unnecessary bloat.
The tool surface covers search, retrieval of details, transcript, documents, and pattern analysis. Missing explicit list-all meetings, but search covers that. No update/delete needed for analysis context.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Search and read your Laxis meeting transcripts, AI summaries, and participants from Claude.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Search meetings, export summaries and transcripts, and manage recordings from any AI tool.
Your professional network in Claude — search contacts, log notes, and send warm intros.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides access to Granola notes, meeting transcripts, calendar events, and document panels through the Granola API, enabling search and retrieval of meeting-related content.75-
- AlicenseNot gradedqualityCmaintenanceEnables semantic search and insight extraction across Granola meeting notes, categorizing content into themes like pain points and decisions. It provides AI assistants with tools to query meeting transcripts, summaries, and speaker-attributed quotes via a local vector index.MIT
- AlicenseAqualityDmaintenanceIntegrates Granola.ai meeting intelligence with MCP clients to provide direct access to meeting notes, transcripts, and workspace organization. It allows users to search and retrieve meeting content through natural language by leveraging existing Granola credentials.74MIT
- AlicenseAqualityFmaintenanceEnables searching and retrieving local Granola meeting notes, including transcripts, AI-generated summaries, and action items. It supports filtering by date or attendee and automatically reloads when the local Granola cache is updated.8MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/maxgerlach1/granola-ai-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server