Miro MCP Server
by henqc
README.md
# 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:
```bash
cd miro-mcp
```
2. Create a virtual environment:
```bash
python -m venv venv
source venv/bin/activate
```
3. Install dependencies:
```bash
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:
```bash
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:
```json
{
"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:
```json
{
"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:
```json
{
"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:**
```json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}
```
**Get board information:**
```json
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "get_board",
"arguments": {
"board_id": "your_board_id"
}
}
}
```
### 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
```
This server cannot be deployed
Maintenance
ActivityInactive
ResponsivenessNo issues