Overview
Access and collaborate on Miro boards and visual collaboration spaces.
Setup
Run with npx:
npx -y @modelcontextprotocol/server-miroConfiguration
MIRO_API_TOKEN environment variableDocumentation
Miro MCP (Enhanced)
Overview
Miro MCP provides access to Miro API for visual collaboration and whiteboard management.
Features
- Board creation and management
- Element manipulation
- Real-time collaboration
- Template access
- Export capabilities
Installation
npx -y @modelcontextprotocol/server-miro
Configuration
Set up Miro API token:
export MIRO_API_TOKEN=your_api_token
Create a developer app at Miro Developer Portal.
Available Operations
| Operation | Description |
|---|---|
| Create Board | Create new whiteboard |
| Get Board | Retrieve board details |
| Add Element | Add shape/text/image |
| List Boards | Get user boards |
| Export Board | Export as image/PDF |
Usage Examples
Create Board
{
"action": "create_board",
"name": "Project Planning",
"description": "Team planning session"
}
Add Element
{
"action": "add_element",
"board_id": "board_id",
"type": "text",
"x": 100,
"y": 100,
"text": "Task 1"
}
List Boards
{
"action": "list_boards",
"limit": 20,
"order": "updated_at"
}
Pros
- ✅ Visual collaboration
- ✅ Real-time sync
- ✅ Rich element types
- ✅ Template library
Cons
- ❌ Requires Miro account
- ❌ API rate limits
- ❌ Premium features needed
