Miro Board Management
Trigger
Working with Miro whiteboards: creating boards, adding content, building diagrams, or running collaborative workflows like sprint planning or retrospectives.
Workflow
Discover boards — Call miro_list_boards or miro_find_board to get the target board ID. Every subsequent operation needs a board ID.
Read existing content — Use miro_get_board for an overview, miro_list_items or miro_list_all_items for specific content, or miro_search_board to find items by text.
Create items — Use the appropriate creation tool:
miro_create_sticky for sticky notes (colors: yellow, green, blue, pink, orange, red, gray, cyan, purple)
miro_create_shape for shapes (rectangle, circle, triangle, rhombus, star, hexagon)
miro_create_text for text labels
miro_create_frame for grouping sections
miro_create_connector to connect items (requires source and target item IDs)
miro_create_card for structured cards with descriptions
miro_create_mindmap_node for mindmap branches
miro_bulk_create when adding multiple items at once
Connect items — Save item IDs from creation responses. Use miro_create_connector with start and end item IDs.
Organize — Use miro_create_frame to group related items, miro_create_group to lock items together, or miro_attach_tag to categorize.
Workflow Templates
Sprint Board
Create a frame for each column (Backlog, In Progress, Review, Done), then add stickies for tasks.
Retrospective
Create three sections with colored stickies:
- Green: What went well
- Pink: What could improve
- Blue: Action items
Brainstorming
Create a central topic shape, then radiate stickies outward. Use connectors to show relationships.
Mermaid Diagrams
Use miro_generate_diagram to convert Mermaid syntax into visual diagrams on the board. Supports flowcharts and sequence diagrams.
Guardrails
- Always start with
miro_list_boards to get board IDs; never guess or hardcode them.
- Save returned item IDs for subsequent connection and update operations.
- Use
miro_bulk_create for 3+ items instead of individual create calls.
- Keep confirmations short: "Added 3 stickies to Sprint Board" not lengthy descriptions.
- When updating items, read the current state first with
miro_get_item.
1---2name: miro-boards3description: Create and manage Miro board content including stickies, shapes, connectors, diagrams, and mindmaps. Use for whiteboard collaboration, sprint planning, retrospectives, and brainstorming.4---56# Miro Board Management78## Trigger910Working with Miro whiteboards: creating boards, adding content, building diagrams, or running collaborative workflows like sprint planning or retrospectives.1112## Workflow13141. **Discover boards** — Call `miro_list_boards` or `miro_find_board` to get the target board ID. Every subsequent operation needs a board ID.15162. **Read existing content** — Use `miro_get_board` for an overview, `miro_list_items` or `miro_list_all_items` for specific content, or `miro_search_board` to find items by text.17183. **Create items** — Use the appropriate creation tool:19 - `miro_create_sticky` for sticky notes (colors: yellow, green, blue, pink, orange, red, gray, cyan, purple)20 - `miro_create_shape` for shapes (rectangle, circle, triangle, rhombus, star, hexagon)21 - `miro_create_text` for text labels22 - `miro_create_frame` for grouping sections23 - `miro_create_connector` to connect items (requires source and target item IDs)24 - `miro_create_card` for structured cards with descriptions25 - `miro_create_mindmap_node` for mindmap branches26 - `miro_bulk_create` when adding multiple items at once27284. **Connect items** — Save item IDs from creation responses. Use `miro_create_connector` with start and end item IDs.29305. **Organize** — Use `miro_create_frame` to group related items, `miro_create_group` to lock items together, or `miro_attach_tag` to categorize.3132## Workflow Templates3334### Sprint Board35Create a frame for each column (Backlog, In Progress, Review, Done), then add stickies for tasks.3637### Retrospective38Create three sections with colored stickies:39- Green: What went well40- Pink: What could improve41- Blue: Action items4243### Brainstorming44Create a central topic shape, then radiate stickies outward. Use connectors to show relationships.4546### Mermaid Diagrams47Use `miro_generate_diagram` to convert Mermaid syntax into visual diagrams on the board. Supports flowcharts and sequence diagrams.4849## Guardrails5051- Always start with `miro_list_boards` to get board IDs; never guess or hardcode them.52- Save returned item IDs for subsequent connection and update operations.53- Use `miro_bulk_create` for 3+ items instead of individual create calls.54- Keep confirmations short: "Added 3 stickies to Sprint Board" not lengthy descriptions.55- When updating items, read the current state first with `miro_get_item`.