Miro Automation via Rube MCP
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Miro connection via
RUBE_MANAGE_CONNECTIONS with toolkit miro
- Always call
RUBE_SEARCH_TOOLS first to get current tool schemas
Setup
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.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit miro
- If connection is not ACTIVE, follow the returned auth link to complete Miro OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core 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 name
sort: Sort by 'default', 'last_modified', 'last_opened', 'last_created', 'alphabetically'
limit: Number of results per page (max 50)
offset: Pagination offset
board_id: Specific board ID for detailed retrieval
Pitfalls:
- Pagination uses offset-based approach, not cursor-based
- Maximum 50 boards per page; iterate with offset for full list
- Board IDs are long alphanumeric strings; always resolve by search first
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 text
style: Styling object with fillColor for sticky note color
position: Object with x and y coordinates
geometry: Object with width and height
Pitfalls:
board_id is required for ALL item operations; resolve via GET_BOARDS2 first
- Sticky note colors use hex codes (e.g., '#FF0000') in the
fillColor field
- Position coordinates use the board's coordinate system (origin at center)
- BULK create has a maximum items-per-request limit; check current schema
- Frame items require
geometry with both width and height
3. 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 page
cursor: Pagination cursor from previous response
Pitfalls:
- Results are paginated; follow
cursor until absent for complete item list
- Item types must match Miro's predefined types exactly
- Large boards may have thousands of items; use type filtering to narrow results
- Connectors are separate from items; use GET_CONNECTORS2 for relationship data
4. 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 invite
role: Access level ('viewer', 'commenter', 'editor')
message: Optional invitation message
Pitfalls:
- Email addresses must be valid; invalid emails cause the entire request to fail
- Role must be one of the predefined values; case-sensitive
- Sharing with users outside the organization may require admin approval
- GET_BOARD_MEMBERS returns all members including the owner
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 ID
startItem: Object with id of the source item
endItem: Object with id of the target item
style: Connector style (line type, color, arrows)
Pitfalls:
- Both start and end items must exist on the same board
- Item IDs are required for connections; resolve via GET_BOARD_ITEMS first
- Connector styles vary; check available options in schema
- Self-referencing connections (same start and end) are not allowed
Common Patterns
ID Resolution
Board name -> Board ID:
1. Call MIRO_GET_BOARDS2 with query=board_name
2. Find board by name in results
3. Extract id field
Item lookup on board:
1. Call MIRO_GET_BOARD_ITEMS with board_id and optional type filter
2. Find item by content or position
3. Extract item id for further operations
Pagination
- Boards: Use
offset and limit (offset-based)
- Board items: Use
cursor and limit (cursor-based)
- Continue until no more results or cursor is absent
- Default page sizes vary by endpoint
Coordinate System
- Board origin (0,0) is at the center
- Positive X is right, positive Y is down
- Items positioned by their center point
- Use
position: {x: 0, y: 0} for center of board
- Frames define bounded areas; items inside inherit frame position
Known Pitfalls
Board IDs:
- Board IDs are required for virtually all operations
- Always resolve board names to IDs via GET_BOARDS2 first
- Do not hardcode board IDs; they vary by account
Item Creation:
- Each item type has different required fields
- Sticky notes need
data.content for text
- Frames need
geometry.width and geometry.height
- Position defaults to (0,0) if not specified; items may overlap
Rate Limits:
- Miro API has rate limits per token
- Bulk operations preferred over individual item creation
- Use MIRO_CREATE_ITEMS_IN_BULK for multiple items
Response Parsing:
- Response data may be nested under
data key
- Item types determine which fields are present in response
- Parse defensively; optional fields may be absent
Quick 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 |
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: miro-automation3description: ALWAYS use this when the request matches Miro Automation: Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors.4---56# Miro Automation via Rube MCP78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.1920## Prerequisites2122- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)23- Active Miro connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `miro`24- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas2526## Setup2728**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.2930311. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds322. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `miro`333. If connection is not ACTIVE, follow the returned auth link to complete Miro OAuth344. Confirm connection status shows ACTIVE before running any workflows3536## Core Workflows3738### 1. List and Browse Boards3940**When to use**: User wants to find boards or get board details4142**Tool sequence**:431. `MIRO_GET_BOARDS2` - List all accessible boards [Required]442. `MIRO_GET_BOARD` - Get detailed info for a specific board [Optional]4546**Key parameters**:47- `query`: Search term to filter boards by name48- `sort`: Sort by 'default', 'last_modified', 'last_opened', 'last_created', 'alphabetically'49- `limit`: Number of results per page (max 50)50- `offset`: Pagination offset51- `board_id`: Specific board ID for detailed retrieval5253**Pitfalls**:54- Pagination uses offset-based approach, not cursor-based55- Maximum 50 boards per page; iterate with offset for full list56- Board IDs are long alphanumeric strings; always resolve by search first5758### 2. Create Boards and Items5960**When to use**: User wants to create a new board or add items to an existing board6162**Tool sequence**:631. `MIRO_CREATE_BOARD` - Create a new empty board [Optional]642. `MIRO_CREATE_STICKY_NOTE_ITEM` - Add sticky notes to a board [Optional]653. `MIRO_CREATE_FRAME_ITEM2` - Add frames to organize content [Optional]664. `MIRO_CREATE_ITEMS_IN_BULK` - Add multiple items at once [Optional]6768**Key parameters**:69- `name` / `description`: Board name and description (for CREATE_BOARD)70- `board_id`: Target board ID (required for all item creation)71- `data`: Content object with `content` field for sticky note text72- `style`: Styling object with `fillColor` for sticky note color73- `position`: Object with `x` and `y` coordinates74- `geometry`: Object with `width` and `height`7576**Pitfalls**:77- `board_id` is required for ALL item operations; resolve via GET_BOARDS2 first78- Sticky note colors use hex codes (e.g., '#FF0000') in the `fillColor` field79- Position coordinates use the board's coordinate system (origin at center)80- BULK create has a maximum items-per-request limit; check current schema81- Frame items require `geometry` with both width and height8283### 3. Browse and Manage Board Items8485**When to use**: User wants to view, find, or organize items on a board8687**Tool sequence**:881. `MIRO_GET_BOARD_ITEMS` - List all items on a board [Required]892. `MIRO_GET_CONNECTORS2` - List connections between items [Optional]9091**Key parameters**:92- `board_id`: Target board ID (required)93- `type`: Filter by item type ('sticky_note', 'shape', 'text', 'frame', 'image', 'card')94- `limit`: Number of items per page95- `cursor`: Pagination cursor from previous response9697**Pitfalls**:98- Results are paginated; follow `cursor` until absent for complete item list99- Item types must match Miro's predefined types exactly100- Large boards may have thousands of items; use type filtering to narrow results101- Connectors are separate from items; use GET_CONNECTORS2 for relationship data102103### 4. Share and Collaborate on Boards104105**When to use**: User wants to share a board with team members or manage access106107**Tool sequence**:1081. `MIRO_GET_BOARDS2` - Find the board to share [Prerequisite]1092. `MIRO_SHARE_BOARD` - Share the board with users [Required]1103. `MIRO_GET_BOARD_MEMBERS` - Verify current board members [Optional]111112**Key parameters**:113- `board_id`: Board to share (required)114- `emails`: Array of email addresses to invite115- `role`: Access level ('viewer', 'commenter', 'editor')116- `message`: Optional invitation message117118**Pitfalls**:119- Email addresses must be valid; invalid emails cause the entire request to fail120- Role must be one of the predefined values; case-sensitive121- Sharing with users outside the organization may require admin approval122- GET_BOARD_MEMBERS returns all members including the owner123124### 5. Create Visual Connections125126**When to use**: User wants to connect items on a board with lines or arrows127128**Tool sequence**:1291. `MIRO_GET_BOARD_ITEMS` - Find items to connect [Prerequisite]1302. `MIRO_GET_CONNECTORS2` - View existing connections [Optional]131132**Key parameters**:133- `board_id`: Target board ID134- `startItem`: Object with `id` of the source item135- `endItem`: Object with `id` of the target item136- `style`: Connector style (line type, color, arrows)137138**Pitfalls**:139- Both start and end items must exist on the same board140- Item IDs are required for connections; resolve via GET_BOARD_ITEMS first141- Connector styles vary; check available options in schema142- Self-referencing connections (same start and end) are not allowed143144## Common Patterns145146### ID Resolution147148**Board name -> Board ID**:149```1501. Call MIRO_GET_BOARDS2 with query=board_name1512. Find board by name in results1523. Extract id field153```154155**Item lookup on board**:156```1571. Call MIRO_GET_BOARD_ITEMS with board_id and optional type filter1582. Find item by content or position1593. Extract item id for further operations160```161162### Pagination163164- Boards: Use `offset` and `limit` (offset-based)165- Board items: Use `cursor` and `limit` (cursor-based)166- Continue until no more results or cursor is absent167- Default page sizes vary by endpoint168169### Coordinate System170171- Board origin (0,0) is at the center172- Positive X is right, positive Y is down173- Items positioned by their center point174- Use `position: {x: 0, y: 0}` for center of board175- Frames define bounded areas; items inside inherit frame position176177## Known Pitfalls178179**Board IDs**:180- Board IDs are required for virtually all operations181- Always resolve board names to IDs via GET_BOARDS2 first182- Do not hardcode board IDs; they vary by account183184**Item Creation**:185- Each item type has different required fields186- Sticky notes need `data.content` for text187- Frames need `geometry.width` and `geometry.height`188- Position defaults to (0,0) if not specified; items may overlap189190**Rate Limits**:191- Miro API has rate limits per token192- Bulk operations preferred over individual item creation193- Use MIRO_CREATE_ITEMS_IN_BULK for multiple items194195**Response Parsing**:196- Response data may be nested under `data` key197- Item types determine which fields are present in response198- Parse defensively; optional fields may be absent199200## Quick Reference201202| Task | Tool Slug | Key Params |203|------|-----------|------------|204| List boards | MIRO_GET_BOARDS2 | query, sort, limit, offset |205| Get board details | MIRO_GET_BOARD | board_id |206| Create board | MIRO_CREATE_BOARD | name, description |207| Add sticky note | MIRO_CREATE_STICKY_NOTE_ITEM | board_id, data, style, position |208| Add frame | MIRO_CREATE_FRAME_ITEM2 | board_id, data, geometry, position |209| Bulk add items | MIRO_CREATE_ITEMS_IN_BULK | board_id, items |210| Get board items | MIRO_GET_BOARD_ITEMS | board_id, type, cursor |211| Share board | MIRO_SHARE_BOARD | board_id, emails, role |212| Get members | MIRO_GET_BOARD_MEMBERS | board_id |213| Get connectors | MIRO_GET_CONNECTORS2 | board_id |214215## When to Use216This skill is applicable to execute the workflow or actions described in the overview.217218## Limitations219- Use this skill only when the task clearly matches the scope described above.220- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.221- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.