Create and manage Miro boards, add sticky notes, cards, shapes and connectors — visual collaboration for AI agents.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"miro": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-miro",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the list_boards tool to list miro boards accessible to the token. supports query search, teamid filter, limit (max 50), and cursor-based pagination”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Create and manage Miro boards, add sticky notes, cards, shapes, frames, and connectors — visual collaboration for AI agents.
Miro is the leading visual collaboration platform used by product, design, and engineering teams worldwide. This MCP server gives AI agents the ability to create and manage boards, add all major item types (cards, sticky notes, text, shapes, frames, connectors), manage board members, and inspect org/team context.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-miro
| Tool | Description |
|---|---|
| list_boards | List boards with optional search query, teamId filter, limit (max 50), and cursor pagination |
| get_board | Get board details — name, description, team, viewLink, created/modified timestamps |
| create_board | Create a new board with name, description, teamId, and sharingPolicy |
| update_board | Update board name, description, or sharing policy |
| delete_board | Permanently delete a board |
| list_items | List items on a board with optional type filter and cursor pagination |
| create_card | Create a card with title, description, fill color, and position |
| create_sticky_note | Create a sticky note with content, fill color, shape (square/rectangle), and position |
| create_text | Create a text item with content, font size, alignment, color, and position |
| create_shape | Create a shape (rectangle, circle, triangle, etc.) with optional text content and styling |
| get_item | Get a specific item by ID |
| update_item | Update item content, style, or position — specify item_type for correct routing |
| create_frame | Create a frame container with title, fill color, position, and dimensions |
| list_frames | List all frames on a board |
| create_connector | Create a connector (arrow/line) between two items with optional stroke styling |
| delete_item | Delete an item from a board |
| list_board_members | List board members with roles — supports cursor pagination |
| get_board_member | Get details for a specific board member |
| invite_board_member | Invite users to a board by email with viewer/commenter/editor role |
| list_teams | List all accessible teams in the organisation |
| get_team | Get team details by ID |
| get_token_context | Get current token info — user ID, scopes, team context |
| _ping | Confirm auth by listing boards — returns board list to verify token |
| Variable | Required | Description | How to Get |
|---|---|---|---|
| MIRO_ACCESS_TOKEN | Yes | Miro OAuth access token | Create an app at developers.miro.com, add OAuth scopes, and authorize with your Miro account. Required scopes: boards:read, boards:write, identity:read. |
MIRO_ACCESS_TOKEN under Project → SecretsOnce added, every AI agent in your workspace can create and manage Miro boards automatically.
"Create a Miro board for our Q2 sprint planning and add a frame for each sprint week"
"Add a sticky note to board uXjVOaabbcc= saying 'Ship the feature by Friday'"
"Create a flow diagram with three shapes connected by arrows on my Architecture board"
"List all boards in the Engineering team"
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-miro \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-MIRO-ACCESS-TOKEN: your-token' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"create_sticky_note","arguments":{"board_id":"uXjVOaabbcc=","content":"Ship it!","style":{"fillColor":"#ffd700"},"shape":"square","position":{"x":0,"y":0}}}}'
cursor value from a response to get the next page. limit is capped at 50 for boards and items.update_item requires item_type — the Miro API uses type-specific URLs (/cards, /sticky_notes, /shapes, etc.). Always pass the item type when updating.uXjVOaabbcc= — use list_boards or get_board to discover them.strokeColor (hex), strokeWidth (number), and strokeStyle (normal/dashed/dotted).MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-miro
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Yes. The Miro MCP includes a create_board tool that lets Claude create boards in your Miro account from a plain-English prompt. You can also update and delete boards — no Miro UI needed.
Yes. The Miro MCP includes tools to list and retrieve boards from your Miro account. Claude can filter, sort, and summarize boards based on your instructions.
Yes. The Miro MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 22 Miro tools are available everywhere you connect it — install once on Aerostack.
Yes. The Miro MCP includes tools to update boards in your Miro account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Miro API.