IntegrateIntegrate
Integrations

Miro Integration

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:

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:

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:

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:

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:

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

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

Configuration Options

Prop

Type

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

Prop

Type

miro_get_board

Get board

Prop

Type

miro_create_board

Create board

Prop

Type

miro_list_board_items

List board items

Prop

Type

miro_create_board_item

Create board item

Prop

Type

miro_list_comments

List comments

Prop

Type

miro_list_board_members

List board members

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: OAuth

On this page