---
title: "Miro Integration"
description: "Manage Miro boards, board items, comments, members, and collaborators"
---
The Miro integration provides access to manage Miro boards, board items, comments, members, and collaborators through the Integrate MCP server.

## Installation

The Miro integration is included with the SDK:

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

## Setup

### 1. Create a Miro OAuth App

1. Create an OAuth application for Miro
2. Configure your redirect URI
3. Note your Client ID and Client Secret

### 2. Configure the Integration on Your Server

Add the Miro integration to your server configuration. The integration automatically reads `MIRO_CLIENT_ID` and `MIRO_CLIENT_SECRET` from your environment variables:

```typescript
import { createMCPServer, miroIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    miroIntegration({
      scopes: ["boards:read", "boards:write", "identity:read", "team:read"], // Optional
    }),
  ],
});
```

You can override the environment variables by passing explicit values:

```typescript
miroIntegration({
  clientId: process.env.CUSTOM_MIRO_ID,
  clientSecret: process.env.CUSTOM_MIRO_SECRET,
      scopes: ["boards:read", "boards:write", "identity:read", "team:read"], // Optional
});
```

### 3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

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

await client.authorize("miro");
const result = await client.miro.getCurrentUser({});

console.log(result);
```

If you're using a custom client, add the integration to the integrations array:

```typescript
import { createMCPClient, miroIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [miroIntegration()],
});
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/miro.ts"
  name="MiroIntegrationConfig"
/>


## Default Scopes

These defaults are applied unless you override `scopes` in the integration config:

- `boards:read`
- `boards:write`
- `identity:read`
- `team:read`

## Tools

### `miro_get_current_user`

Get current user

_No parameters._

### `miro_list_boards`

List boards

<AutoTypeTable
  path="generated/tool-params/miro.ts"
  name="MiroListBoardsParams"
/>

### `miro_get_board`

Get board

<AutoTypeTable
  path="generated/tool-params/miro.ts"
  name="MiroGetBoardParams"
/>

### `miro_create_board`

Create board

<AutoTypeTable
  path="generated/tool-params/miro.ts"
  name="MiroCreateBoardParams"
/>

### `miro_list_board_items`

List board items

<AutoTypeTable
  path="generated/tool-params/miro.ts"
  name="MiroListBoardItemsParams"
/>

### `miro_create_board_item`

Create board item

<AutoTypeTable
  path="generated/tool-params/miro.ts"
  name="MiroCreateBoardItemParams"
/>

### `miro_list_comments`

List comments

<AutoTypeTable
  path="generated/tool-params/miro.ts"
  name="MiroListCommentsParams"
/>

### `miro_list_board_members`

List board members

<AutoTypeTable
  path="generated/tool-params/miro.ts"
  name="MiroListBoardMembersParams"
/>

## Notes

- Category: Productivity
- Authentication mode: OAuth
