Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.
Automates Miro whiteboard operations including boards, sticky notes, frames, sharing, and connectors via Rube MCP.
/plugin marketplace add davepoon/buildwithclaude/plugin install all-skills@buildwithclaudeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Automate Miro whiteboard operations through Composio's Miro toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/miro
RUBE_MANAGE_CONNECTIONS with toolkit miroRUBE_SEARCH_TOOLS first to get current tool schemasGet 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 miroWhen 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:
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 heightWhen 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 listWhen 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:
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:
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
offset and limit (offset-based)cursor and limit (cursor-based)position: {x: 0, y: 0} for center of boardBoard IDs:
Item Creation:
data.content for textgeometry.width and geometry.heightRate Limits:
Response Parsing:
data key| 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 |
Powered by Composio
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.