Miro MCP Server

Miro MCP Server

Enables MCP-compatible LLMs to interact with Miro whiteboards to manage boards, create and manipulate shapes, and organize content through grouping tools.

Category
Visit Server

README

Miro MCP Server

A standalone Model Context Protocol (MCP) server that enables any MCP-compatible LLM to interact with Miro whiteboards

Prerequisites

  • Python 3.9 or higher
  • Miro Developer Account with Client ID and Client Secret
  • MCP-compatible LLM client

Setup

  1. Clone this repository or navigate to the project directory:
cd miro-mcp
  1. Create a virtual environment:
python -m venv venv
source venv/bin/activate
  1. Install dependencies:
pip install -r requirements.txt

Configuration

  1. Create a .env file in the project root with your Miro credentials:
MIRO_CLIENT_ID=your_client_id_here
MIRO_CLIENT_SECRET=your_client_secret_here
MIRO_REDIRECT_URL=http://localhost:8080/callback

Available Tools

Authentication Tools

  • get_auth_url: Get the OAuth 2.0 authorization URL

    • Parameters: None
    • Returns: Authorization URL and instructions
  • exchange_auth_code: Exchange authorization code for access token

    • Parameters:
      • code (string, required): Authorization code from OAuth callback
    • Returns: Success status

Board Management Tools

  • get_board: Get information about a Miro board including metadata, name, description, and settings
    • Parameters:
      • board_id (string, required): The ID of the board
    • Returns: Board information

Shape Manipulation Tools

  • create_shape: Create a shape on a board

    • Parameters:
      • board_id (string, required): The ID of the board
      • shape_type (string, required): Type of shape (rectangle, circle, triangle, star, arrow, rhombus, octagon, hexagon)
      • x (number, required): X coordinate of the shape position
      • y (number, required): Y coordinate of the shape position
      • width (number, required): Width of the shape
      • height (number, required): Height of the shape
      • fillColor (string, optional): Fill color in hex format (e.g., #FF0000)
      • borderColor (string, optional): Border color in hex format (e.g., #000000)
      • borderWidth (number, optional): Border width in pixels
      • content (string, optional): Text content to display in the shape
    • Returns: Created shape information
  • update_shape: Update properties of an existing shape

    • Parameters:
      • board_id (string, required): The ID of the board
      • item_id (string, required): The ID of the shape item to update
      • x (number, optional): New X coordinate
      • y (number, optional): New Y coordinate
      • width (number, optional): New width
      • height (number, optional): New height
      • fillColor (string, optional): New fill color
      • borderColor (string, optional): New border color
      • borderWidth (number, optional): New border width
      • content (string, optional): New text content
    • Returns: Updated shape information
  • delete_shape: Delete a shape from a board

    • Parameters:
      • board_id (string, required): The ID of the board
      • item_id (string, required): The ID of the shape item to delete
    • Returns: Success message

Grouping Tools

  • group_shapes: Group multiple shapes together

    • Parameters:
      • board_id (string, required): The ID of the board
      • item_ids (array, required): List of item IDs to group together (minimum 2 items)
    • Returns: Group/frame information
  • ungroup_shapes: Ungroup shapes by removing them from a group/frame

    • Parameters:
      • board_id (string, required): The ID of the board
      • group_id (string, required): The ID of the group/frame to ungroup
    • Returns: Success message

Usage

Running the MCP Server

The MCP server communicates via stdio using JSON-RPC protocol. To run it:

python server.py

Authentication

Before using the MCP server to interact with Miro boards, you need to authenticate and obtain an access token:

Step 1: Get Authorization URL

Call the get_auth_url tool to retrieve the OAuth authorization URL:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_auth_url",
    "arguments": {}
  }
}

The response will contain an auth_url that you need to visit in your browser.

Step 2: Authorize the Application

  1. Copy the auth_url from the response
  2. Open it in your web browser
  3. Log in to your Miro account
  4. Review and approve the permissions requested by the application
  5. After authorization, Miro will redirect you to the callback URL specified in your configuration

Step 3: Extract the Authorization Code

After authorization, Miro redirects to your callback URL with a code parameter in the query string. The URL will look like:

http://localhost:8080/callback?code=AUTHORIZATION_CODE_HERE

Extract the code value from the URL (everything after code=).

Step 4: Exchange Code for Access Token

Use the exchange_auth_code tool with the authorization code to complete authentication:

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "exchange_auth_code",
    "arguments": {
      "code": "AUTHORIZATION_CODE_HERE"
    }
  }
}

Example MCP Client Configuration

For use with MCP-compatible clients, configure the server as follows:

{
  "mcpServers": {
    "miro": {
      "command": "python",
      "args": ["/path/to/miro-mcp/server.py"],
      "env": {
        "MIRO_CLIENT_ID": "your_client_id",
        "MIRO_CLIENT_SECRET": "your_client_secret",
        "MIRO_REDIRECT_URL": "http://localhost:8080/callback"
      }
    }
  }
}

Example Tool Calls

Here are some example JSON-RPC requests:

List available tools:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list"
}

Get board information:

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "get_board",
    "arguments": {
      "board_id": "your_board_id"
    }
  }
}

Sample Output

Sample Output

Repository Structure

miro-mcp/
├── server.py              # Main MCP server entry point
├── miro_client.py         # Miro API client wrapper
├── config.py              # Configuration management
├── tool_registry.py       # Tool registration system
├── requirements.txt       # Python dependencies
├── README.md              # This file
└── tools/                 # Tool implementations
    ├── __init__.py
    ├── auth_tools.py      # Authentication tools
    ├── board_tools.py     # Board management tools
    ├── shape_tools.py     # Shape manipulation tools
    └── group_tools.py     # Grouping tools

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured