IntegrateIntegrate
Integrations

Granola Integration

List and read Granola meeting notes and folders

The Granola integration provides access to list and read Granola meeting notes and folders through the Integrate MCP server.

Installation

The Granola integration is included with the SDK:

import { granolaIntegration } from "integrate-sdk/server";

Setup

Add Granola to your server configuration. Provide credentials via environment variables or integration config:

import { createMCPServer, granolaIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    granolaIntegration({
      // See configuration options below
    }),
  ],
});

Client-Side Usage

import { client } from "integrate-sdk";

// Use client.granola methods after connecting

Environment Variables

  • GRANOLA_API_KEY (when supported by this integration)

Configuration Options

Prop

Type

Tools

granola_list_notes

List notes

No parameters.

granola_get_note

Get note

No parameters.

granola_list_folders

List folders

No parameters.

Notes

  • Category: Productivity
  • Authentication mode: API key

On this page