Back to MCP Directory
Miro
Model Context Protocol moderate risk

Miro

An MCP server that connects to Miro Whiteboard, enabling board manipulation, sticky note creation, and bulk operations via OAuth authentication.

Connections & Capabilities

Connects To

GitHub

Capabilities

readwrite

Quickstart

Install

npx -y @smithery/cli install @llmindset/mcp-miro --client claude

Config

{
  "mcpServers": {
    "mcp-miro": {
      "command": "/path/to/node-or-npx",
      "arguments": [
        "/path/to/mcp-miro/build/index.js",
        "--token","MIRO-OAUTH-KEY"
      ]
    }
  }
}

Exposed MCP Tools (7)

safe
Get Board Contents

Retrieves the contents of a specified Miro board.

Read-only operation; no modification of the board.

moderate
Create Sticky

Creates a new sticky note on a Miro board.

Adds content to the board; non-destructive.

moderate
Create Shape

Creates a new shape on a Miro board.

Adds content to the board; non-destructive.

safe
Read Board

Reads the metadata and structure of a Miro board.

Read-only operation; no modification of the board.

safe
Read Frame

Reads the contents of a specific frame within a Miro board.

Read-only operation; no modification of the board.

safe
Read Contents

Reads the contents of a specific object on a Miro board.

Read-only operation; no modification of the board.

moderate
Bulk Create

Creates multiple objects (e.g., sticky notes, shapes) on a Miro board in a single operation.

Adds content to the board; non-destructive but can significantly alter the board state.

Safety Assessment

This server allows for both read and write operations on Miro boards, making it moderately risky. The use of OAuth provides some security, but careful management of the token and awareness of the potential impact of bulk operations are essential.

  • OAuth authentication required
  • No direct filesystem access
  • Limited scope to Miro board operations
  • MCP Inspector available for debugging
  • Requires OAuth token management
  • Potential for unintended board modifications
  • Bulk operations could have significant impact
  • Internet connectivity required