Skip to main content
Glama
NimbleBrainInc

Granola MCP Server

WARNING

This repository is archived and no longer maintained.

This MCP server has been removed from the mpak registry. Granola now provides a native remote MCP endpoint — use that instead.


Granola MCP Server

CI Python 3.13+ License: MIT MCPB mpak

MCP server for searching your local Granola meeting notes.

  • Search across notes, titles, and AI summaries

  • Filter by date range or attendee

  • Pull transcripts when available

  • Read AI panels (summaries, action items) when available

  • Supports Granola cache v3 through v6

  • Reloads automatically when Granola updates its cache

Installation

With mpak

mpak bundle run @nimblebraininc/granola

Local Development

uv sync --dev
uv run python -m mcp_granola.server

Related MCP server: Granola MCP Server

Tools

Tool

Description

search_meetings

Search notes by keyword with optional date/attendee filters

get_meeting

Get full meeting details including notes and AI panels

list_meetings

List meetings with pagination and filtering

search_by_person

Find all meetings with a specific person

get_transcript

Get transcript segments with timestamps

get_meeting_stats

Get statistics about your meeting data

Data Source

Auto-detects the newest Granola cache file (cache-v6.json through cache-v3.json) from ~/Library/Application Support/Granola/ (macOS only). Cached in memory, reloads when the file changes.

Development

make check          # Run all checks (format, lint, typecheck, test)
make test           # Run tests
make test-cov       # Run tests with coverage
make format         # Format code
make lint           # Lint code
make typecheck      # Type check with ty

License

MIT

Available Tools

8 tools
extract_action_itemsA

Extract action items from meeting notes.

Use this when asked for action items, TODOs, or next steps. Can target a single meeting by ID, or scan multiple meetings by date range.

Args: meeting_id: Specific meeting ID to extract from (takes precedence) date_from: Start date (YYYY-MM-DD) for scanning multiple meetings date_to: End date (YYYY-MM-DD) for scanning multiple meetings days: Convenience shortcut: last N days from today person: Filter by attendee name or email (only with date range) ctx: MCP context

Returns: Extracted action items with source meeting context

ParametersJSON Schema
NameRequiredDescriptionDefault
meeting_idNo
date_fromNo
date_toNo
daysNo
personNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
action_itemsYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It discloses that meeting_id takes precedence, person filter only works with date range, and the return format. However, it does not mention whether the operation is safe (read-only) or if it has side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with an initial purpose statement followed by usage guidance and a parameter list. It is concise but could be slightly more succinct by removing the redundant 'Args:' section and integrating parameter descriptions more naturally.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists (not shown), the description adequately covers the return format ('Extracted action items with source meeting context'). All 5 parameters are documented in the description, and the tool's behavior is fully specified for the given context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description compensates thoroughly. It explains precedence ('meeting_id takes precedence'), usage of date parameters (YYYY-MM-DD), the 'days' shortcut, and the constraint that person requires a date range.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Extract' and resource 'action items from meeting notes'. It distinguishes from siblings like get_meeting, get_transcript, and search_meetings by focusing on action item extraction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use ('when asked for action items, TODOs, or next steps') and explains the two modes by meeting_id or date range. It does not directly contrast with sibling tools but the purpose is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_meetingA

Get complete meeting details including notes and summaries.

Args: meeting_id: Meeting document ID include_transcript: Include full transcript in notes_plain field ctx: MCP context

Returns: Full meeting details with notes, attendees, and AI panels

ParametersJSON Schema
NameRequiredDescriptionDefault
meeting_idYes
include_transcriptNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must fully disclose behavioral traits. It only states the tool 'gets' data, omitting details like required permissions, data freshness, side effects, or response size. This is insufficient for understanding the tool's full behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is presented in a clear docstring-like format with Args and Returns sections, making it easy to scan. However, it includes an undocumented 'ctx' parameter (likely MCP context) that adds minor clutter. Overall, it is concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema, the description adequately covers the tool's purpose and parameters. It lacks guidance on usage context relative to sibling tools, but for a simple retrieval tool with good schema support, it is mostly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, but the description adds meaningful context for both parameters: 'meeting_id: Meeting document ID' and 'include_transcript: Include full transcript in notes_plain field'. This goes beyond the bare schema, though the 'ctx' parameter is undocumented and might confuse.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get complete meeting details including notes and summaries', using a specific verb and resource. It effectively distinguishes itself from sibling tools like list_meetings, get_transcript, and get_meeting_stats.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when full meeting details are needed, but lacks explicit guidance on when to use this tool vs alternatives, such as when to use get_transcript or list_meetings instead. No 'when not to use' or alternative recommendations are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_meeting_statsA

Get statistics about your Granola meeting data.

Args: ctx: MCP context

Returns: Statistics including document counts, date range, and unique attendees

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
total_documentsYes
total_transcriptsYes
documents_with_transcriptsYes
date_range_startYes
date_range_endYes
unique_attendeesYes

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description must carry behavioral disclosure. It states that the tool returns 'document counts, date range, and unique attendees', implying a read operation. However, it does not mention authentication needs, rate limits, or output format specifics beyond these fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is brief and includes an Args/Returns structure. However, the 'ctx: MCP context' line is generic and unnecessary, adding minor noise. Overall, it is front-loaded with purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that an output schema exists, the description does not need to fully explain return values. It mentions key statistics like document counts, date range, and unique attendees, which is sufficient for understanding. No critical gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters (0 params), so baseline is 4. The description does not need to add parameter information; it correctly uses an empty input schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get statistics about your Granola meeting data', specifying the verb 'Get' and the resource 'statistics'. This distinguishes it from siblings like get_meeting, list_meetings, and summarize_meetings, which have different focuses.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives is provided. For a parameterless statistics tool, usage is straightforward, but the description could mention that it's for high-level overview rather than detailed data.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_transcriptA

Get the full transcript for a meeting.

Args: meeting_id: Meeting document ID format: Output format - text or timestamped ctx: MCP context

Returns: Transcript segments with timing information

ParametersJSON Schema
NameRequiredDescriptionDefault
meeting_idYes
formatNotext

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description bears all behavioral disclosure. It mentions output format options and return of transcript segments with timing, but omits potential errors, authorization needs, or side effects. Adequate but not exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Very concise with structured Args and Returns sections. Each sentence adds value, and there is no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given an output schema exists, description need not detail return values, but it does. However, it lacks context on usage scenarios and error handling. Adequate for a simple tool but could include more about when to use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description compensates by explaining meeting_id as 'Meeting document ID' and format as 'Output format - text or timestamped,' adding meaning beyond the schema property types.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get the full transcript for a meeting,' specifying a concrete verb (get) and resource (transcript). It distinguishes itself from siblings like get_meeting (metadata) and extract_action_items (action items).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

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 such as get_meeting or search_meetings. Lacks explicit context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_meetingsB

List meetings with optional filters.

Args: limit: Maximum results (default: 20) offset: Skip first N results date_from: Filter by start date (YYYY-MM-DD) date_to: Filter by end date (YYYY-MM-DD) attendee: Filter by attendee name or email sort: Sort order - date_desc, date_asc, or title ctx: MCP context

Returns: Paginated list of meetings

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
date_fromNo
date_toNo
attendeeNo
sortNodate_desc

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
offsetYes
limitYes
meetingsYes

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It does not explicitly state that the tool is read-only, nor does it mention any side effects, auth requirements, or rate limits. The parameter descriptions add some context but behavioral traits are under-described.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description includes a stray 'ctx: MCP context' line that does not correspond to any parameter in the input schema, creating inconsistency. It is moderately concise but the extra line wastes space and may confuse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 6 parameters and no annotations, description covers parameter meanings and return type ('Paginated list of meetings'). However, it lacks details on pagination behavior, error handling, and date format restrictions. With an output schema present, some of this is likely covered, but not guaranteed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but description provides a docstring-style explanation of each parameter, including defaults and expected format (e.g., YYYY-MM-DD for dates). This adds significant meaning beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states 'List meetings with optional filters', which is a specific verb and resource. However, it does not explicitly distinguish from sibling tools like search_meetings, but the purpose is still clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description implies usage by showing filter parameters but provides no guidance on when to use list_meetings vs search_meetings or other siblings. No 'when to use' or 'when not to use' information.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_by_personA

Find all meetings involving a specific person.

Args: person: Person's name or email address limit: Maximum results (default: 20) date_from: Filter by start date (YYYY-MM-DD) date_to: Filter by end date (YYYY-MM-DD) ctx: MCP context

Returns: List of meetings with that person

ParametersJSON Schema
NameRequiredDescriptionDefault
personYes
limitNo
date_fromNo
date_toNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
offsetYes
limitYes
meetingsYes

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must fully disclose behavior, but it only states the basic operation (find meetings) and return type, omitting details like side effects, permissions, 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is structured with clear Args and Returns sections, but it is slightly verbose with 5 lines for description plus 6 lines for details. It is informative and front-loaded with the main purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given an output schema exists, the description's return statement is sufficient. All parameters are explained, and the description provides a complete picture for a search tool, though it could mention pagination or ordering.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds significant meaning beyond the input schema by explaining each parameter's purpose and format, e.g., 'person: Person's name or email address' and 'date_from: Filter by start date (YYYY-MM-DD),' compensating for 0% schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Find all meetings involving a specific person,' using a specific verb and resource, and it distinguishes from siblings like search_meetings and list_meetings by focusing on the person filter.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for searching by person but does not explicitly state when to use it versus alternatives like search_meetings or list_meetings, nor does it mention 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.

search_meetingsA

Search meeting notes by keyword or phrase.

Args: query: Search query (keywords or phrase) limit: Maximum results to return (default: 10) date_from: Filter by start date (YYYY-MM-DD) date_to: Filter by end date (YYYY-MM-DD) attendee: Filter by attendee name or email ctx: MCP context

Returns: Search results with matching documents

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
limitNo
date_fromNo
date_toNo
attendeeNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYes
total_resultsYes
resultsYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full responsibility for behavioral traits. It implies read-only functionality through the search action but does not explicitly state that it is non-destructive, nor does it mention rate limits, authentication, or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is structured as a clear docstring with a purpose sentence, parameter list, and return statement. It is appropriately sized for 5 parameters, but could be slightly more concise by removing the 'ctx' mention not in schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (5 params, output schema exists), the description covers the basics but lacks differentiation from siblings and details like pagination or empty results handling. The return description is minimal, but the output schema mitigates this.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, so the description must compensate. It explains all schema parameters (query, limit, date_from, date_to, attendee) beyond their names, adding meaning like defaults and format expectations. This adds significant value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches meeting notes by keyword, using a specific verb and resource. However, it does not differentiate from sibling tools like 'search_by_person', which also searches but by person. This lack of distinction prevents a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for keyword searches but does not provide explicit guidance on when to use this tool versus alternatives like 'list_meetings' or 'search_by_person'. No when-not or alternative tool mentions are included.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

summarize_meetingsA

Get meeting summaries with notes for a time period.

Use this when asked to summarize, recap, or review meetings over a period. Provide either date_from/date_to (YYYY-MM-DD) or days (last N days).

Args: date_from: Start date (YYYY-MM-DD) date_to: End date (YYYY-MM-DD) days: Convenience shortcut: last N days from today person: Filter by attendee name or email ctx: MCP context

Returns: Meetings with their notes and attendees

ParametersJSON Schema
NameRequiredDescriptionDefault
date_fromNo
date_toNo
daysNo
personNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
date_fromYes
date_toYes
meetingsYes

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the burden. It describes the return as meetings with notes and attendees, but does not explicitly state that the operation is read-only or non-destructive. Sufficient but not detailed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: a concise summary sentence, usage guideline, bullet-like parameter explanations, and a return description. Every sentence earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity and the presence of an output schema, the description covers the essential inputs (time period, person filter) and output. It could mention that summaries are generated from notes, but overall it is complete for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds meaning beyond the schema by explaining the date parameters (YYYY-MM-DD format, convenience of days) and person filtering. It clarifies the mutual exclusivity of date_from/date_to vs days. The 'ctx' parameter is not fully described, but it is standard.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get meeting summaries with notes for a time period', specifying the verb, resource, and scope. It distinctly distinguishes from sibling tools like list_meetings, get_meeting, and search_meetings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says 'Use this when asked to summarize, recap, or review meetings over a period', giving clear context for when to invoke. It lacks explicit exclusions or alternative tool references, but the guidance is straightforward.

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.

  1. 8 tool updatesv0.3.0
    • First observedextract_action_items
    • First observedget_meeting
    • First observedget_meeting_stats
    • First observedget_transcript
    • First observedlist_meetings
    • First observedsearch_by_person
    • First observedsearch_meetings
    • First observedsummarize_meetings

TDQS

A3.7/5.0
Disambiguation3/5

Most tools are distinct, but `list_meetings` and `search_by_person` both return lists of meetings with attendee filters, creating potential confusion. Descriptions help differentiate but overlap exists.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (e.g., `list_meetings`, `get_meeting`, `search_meetings`). No mixed conventions or vague verbs.

Tool Count5/5

8 tools is well-scoped for a meeting notes query server. Each tool serves a clear purpose without unnecessary bloat or insufficiency.

Completeness4/5

Covers core querying needs: retrieve, list, search, summarize, extract action items, stats. Missing update/delete (likely out of scope) and a combined view of all action items, but minor gaps agents can work around.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

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

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    Provides access to Granola notes, meeting transcripts, calendar events, and document panels through the Granola API, enabling search and retrieval of meeting-related content.
    7
    5
    -
  • A
    license
    A
    quality
    C
    maintenance
    Integrates local Granola.ai meeting intelligence with Claude Desktop to enable searching and analyzing meeting transcripts, notes, and summaries. Users can perform natural language queries to retrieve meeting details, analyze participant patterns, and access full speaker-identified conversations.
    5
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables 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

Latest Blog Posts

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/NimbleBrainInc/mcp-granola'

If you have feedback or need assistance with the MCP directory API, please join our Discord server