AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Granola Mcp Server

mcp-arcadeai-granola-mcp-server · by ArcadeAI

An MCP server for Granola built with arcade-mcp-server

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add mcp-arcadeai-granola-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-arcadeai-granola-mcp-server)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Granola Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Granola MCP Server

An Arcade MCP server that exposes Granola meeting intelligence — notes, transcripts, attendees, and calendar metadata — as tools for any MCP-compatible client (Claude Code, Cursor, etc.).

Built on arcade-mcp-server with OAuth 2.1 Resource Server authentication via Arcade Cloud.

Tools

| Tool | Description | |---|---| | list_meetings | List meetings with optional date-range filters and cursor pagination. Returns metadata only (no notes/transcript). | | get_meeting | Get full metadata for a single meeting — attendees, calendar event, folders, duration estimate. | | get_meeting_transcript | Get the verbatim transcript with speaker labels, timestamps, and optional speaker filtering. |

All tools require a GRANOLA_API_KEY (Enterprise API key) which is injected as a server-side secret — it is never exposed to the LLM or MCP client.

Prerequisites

Quick Start

# 1. Install dependencies
make install

# 2. Configure your API key
cp .env.example .env
# Edit .env and add your Granola API key

# 3. Start the server (HTTP on port 8000)
make dev

The server is now running at http://localhost:8000/mcp. Point your MCP client to this exact URL and start querying your meetings.

Authentication

This server uses OAuth 2.1 Resource Server authentication. Incoming requests are validated against Arcade Cloud's authorization server using JWT tokens signed with Ed25519. The server:

  • Validates token signatures via JWKS from https://cloud.arcade.dev/.well-known/jwks/oauth2
  • Verifies the issuer is https://cloud.arcade.dev/oauth2
  • Checks the audience matches the server's canonical URL
  • Maps the email claim to the user identity for Arcade tool authorization

Configuration

| Environment Variable | Description | |---|---| | GRANOLA_API_KEY | Granola Enterprise API key (required) |

Development

make install   # Install all dependencies (including dev extras)
make test      # Run tests with coverage
make lint      # Run linting and type checking
make build     # Build wheel

Project Structure

arcade_granola/
├── __main__.py          # Server entrypoint, resource server auth config
├── auth.py              # API key auth provider
├── client.py            # Async HTTP client for Granola's public API
├── models.py            # Pydantic models for API responses
└── tools/
    ├── _common.py       # Shared helpers (client factory, URL builders)
    └── meetings.py      # Meeting tools (list, get, transcript)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.