An MCP server for Miro integration that enables AI assistants to interact with Miro's collaborative whiteboard platform. Developed by Konrad Jarzyna, this TypeScript implementation provides over 80 tools for managing boards, creating and manipulating various item types (sticky notes, shapes, text, images), handling tags, and working with enterprise features. The server uses the official Miro API client and implements a singleton pattern for API access management. It's particularly useful for teams looking to automate whiteboard creation, organize visual collaboration sessions, or integrate Miro's capabilities into AI-assisted workflows for design thinking, project planning, and visual ideation.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Retrieve a list of all boards.
Create a new board. Parameters: board details.
Update an existing board. Parameters: board ID and updated details.
Delete a specified board. Parameters: board ID.
Create a copy of a specified board. Parameters: board ID.
Retrieve details of a specific board. Parameters: board ID.
Retrieve all items on a specified board. Parameters: board ID.
Retrieve details of a specific item on a board. Parameters: item ID.
Update the position of a specific item. Parameters: item ID and new position.
Delete a specific item from a board. Parameters: item ID.
Create a new app card item on the board. Parameters: item details.
Retrieve a specific app card item. Parameters: item ID.
Update an existing app card item. Parameters: item ID and updated details.
Delete a specified app card item. Parameters: item ID.
Create a new card item on the board. Parameters: item details.
Retrieve a specific card item. Parameters: item ID.
Update an existing card item. Parameters: item ID and updated details.
Delete a specified card item. Parameters: item ID.
Create a new connector on the board. Parameters: connector details.
Retrieve all connectors on a board.
Retrieve details of a specific connector. Parameters: connector ID.
Update an existing connector. Parameters: connector ID and updated details.
Delete a specified connector. Parameters: connector ID.
Create a new sticky note item on the board. Parameters: item details.
Retrieve a specific sticky note item. Parameters: item ID.
Update an existing sticky note item. Parameters: item ID and updated details.
Delete a specified sticky note item. Parameters: item ID.
Create a new frame on the board. Parameters: frame details.
Retrieve a specific frame item. Parameters: frame ID.
Update an existing frame item. Parameters: frame ID and updated details.
Delete a specified frame item. Parameters: frame ID.
Create a new document item on the board. Parameters: item details.
Retrieve a specific document item. Parameters: item ID.
Update an existing document item. Parameters: item ID and updated details.
Delete a specified document item. Parameters: item ID.
Create a new text item on the board. Parameters: item details.
Retrieve a specific text item. Parameters: item ID.
Update an existing text item. Parameters: item ID and updated details.
Delete a specified text item. Parameters: item ID.
Create multiple items in bulk on the board. Parameters: list of item details.
Create an image item using a URL. Parameters: image URL.
Create an image item using a file upload. Parameters: file.
Retrieve a specific image item. Parameters: item ID.
Update an existing image item. Parameters: item ID and updated details.
Update an existing image item using a file upload. Parameters: item ID and file.
Delete a specified image item. Parameters: item ID.
Create a new shape item on the board. Parameters: item details.
Retrieve a specific shape item. Parameters: item ID.
Update an existing shape item. Parameters: item ID and updated details.
Delete a specified shape item. Parameters: item ID.
Create a new embed item on the board. Parameters: item details.
Retrieve a specific embed item. Parameters: item ID.
Update an existing embed item. Parameters: item ID and updated details.
Delete a specified embed item. Parameters: item ID.
Create a new tag. Parameters: tag details.
Retrieve a specific tag. Parameters: tag ID.
Retrieve all tags.
Update an existing tag. Parameters: tag ID and updated details.
Delete a specified tag. Parameters: tag ID.
Attach a tag to an item. Parameters: item ID and tag ID.
Detach a tag from an item. Parameters: item ID and tag ID.
Retrieve all tags attached to an item. Parameters: item ID.
Retrieve all members of a board.
Retrieve details of a specific board member. Parameters: member ID.
Remove a member from the board. Parameters: member ID.