---
title: "Granola Integration"
description: "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:

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

## Setup

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

```typescript
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

```typescript
import { client } from "integrate-sdk";

// Use client.granola methods after connecting
```

## Environment Variables

- `GRANOLA_API_KEY` (when supported by this integration)

## Configuration Options

<AutoTypeTable
  path="../src/integrations/granola.ts"
  name="GranolaIntegrationOptions"
/>


## 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
