miro-automation
Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.
Miro Automation via Rube MCP
Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.
Prerequisites
RUBE_MANAGE_CONNECTIONS with toolkit miroRUBE_SEARCH_TOOLS first to get current tool schemasSetup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit miroCore Workflows
1. List and Browse Boards
When to use: User wants to find boards or get board details
Tool sequence:
MIRO_GET_BOARDS2 - List all accessible boards [Required]MIRO_GET_BOARD - Get detailed info for a specific board [Optional]Key parameters:
query: Search term to filter boards by namesort: Sort by 'default', 'last_modified', 'last_opened', 'last_created', 'alphabetically'limit: Number of results per page (max 50)offset: Pagination offsetboard_id: Specific board ID for detailed retrievalPitfalls:
2. Create Boards and Items
When to use: User wants to create a new board or add items to an existing board
Tool sequence:
MIRO_CREATE_BOARD - Create a new empty board [Optional]MIRO_CREATE_STICKY_NOTE_ITEM - Add sticky notes to a board [Optional]MIRO_CREATE_FRAME_ITEM2 - Add frames to organize content [Optional]MIRO_CREATE_ITEMS_IN_BULK - Add multiple items at once [Optional]Key parameters:
name / description: Board name and description (for CREATE_BOARD)board_id: Target board ID (required for all item creation)data: Content object with content field for sticky note textstyle: Styling object with fillColor for sticky note colorposition: Object with x and y coordinatesgeometry: Object with width and heightPitfalls:
board_id is required for ALL item operations; resolve via GET_BOARDS2 firstfillColor fieldgeometry with both width and height3. Browse and Manage Board Items
When to use: User wants to view, find, or organize items on a board
Tool sequence:
MIRO_GET_BOARD_ITEMS - List all items on a board [Required]MIRO_GET_CONNECTORS2 - List connections between items [Optional]Key parameters:
board_id: Target board ID (required)type: Filter by item type ('sticky_note', 'shape', 'text', 'frame', 'image', 'card')limit: Number of items per pagecursor: Pagination cursor from previous responsePitfalls:
cursor until absent for complete item list4. Share and Collaborate on Boards
When to use: User wants to share a board with team members or manage access
Tool sequence:
MIRO_GET_BOARDS2 - Find the board to share [Prerequisite]MIRO_SHARE_BOARD - Share the board with users [Required]MIRO_GET_BOARD_MEMBERS - Verify current board members [Optional]Key parameters:
board_id: Board to share (required)emails: Array of email addresses to inviterole: Access level ('viewer', 'commenter', 'editor')message: Optional invitation messagePitfalls:
5. Create Visual Connections
When to use: User wants to connect items on a board with lines or arrows
Tool sequence:
MIRO_GET_BOARD_ITEMS - Find items to connect [Prerequisite]MIRO_GET_CONNECTORS2 - View existing connections [Optional]Key parameters:
board_id: Target board IDstartItem: Object with id of the source itemendItem: Object with id of the target itemstyle: Connector style (line type, color, arrows)Pitfalls:
Common Patterns
ID Resolution
Board name -> Board ID:
1. Call MIRO_GET_BOARDS2 with query=board_name
Find board by name in results
Extract id field Item lookup on board:
1. Call MIRO_GET_BOARD_ITEMS with board_id and optional type filter
Find item by content or position
Extract item id for further operations Pagination
offset and limit (offset-based)cursor and limit (cursor-based)Coordinate System
position: {x: 0, y: 0} for center of boardKnown Pitfalls
Board IDs:
Item Creation:
data.content for textgeometry.width and geometry.heightRate Limits:
Response Parsing:
data keyQuick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| List boards | MIRO_GET_BOARDS2 | query, sort, limit, offset |
| Get board details | MIRO_GET_BOARD | board_id |
| Create board | MIRO_CREATE_BOARD | name, description |
| Add sticky note | MIRO_CREATE_STICKY_NOTE_ITEM | board_id, data, style, position |
| Add frame | MIRO_CREATE_FRAME_ITEM2 | board_id, data, geometry, position |
| Bulk add items | MIRO_CREATE_ITEMS_IN_BULK | board_id, items |
| Get board items | MIRO_GET_BOARD_ITEMS | board_id, type, cursor |
| Share board | MIRO_SHARE_BOARD | board_id, emails, role |
| Get members | MIRO_GET_BOARD_MEMBERS | board_id |
| Get connectors | MIRO_GET_CONNECTORS2 | board_id |