Creativity · MCP — server

MCP Miro Server

The MCP Miro Server integrates Miro's REST API so an MCP client can create sticky notes, read board content, cluster items, move frames, and export images. It's a natural fit for facilitators who want an LLM to synthesize a workshop in real time — extracting themes, writing summaries, and adding follow-up cards.

MCP facts

Kind
server
Ecosystem
anthropic-mcp
Language
TypeScript
Transports
stdio, http

Capabilities

  • Tools: create_sticky, list_items, update_item, create_frame, export_board
  • Resources: miro://board/{id}, miro://item/{id}
  • Auth: Miro OAuth 2.0 (boards:read, boards:write)

Install

npx -y @community/mcp-server-miro

Configuration

{
  "mcpServers": {
    "miro": {
      "command": "npx",
      "args": ["-y", "@community/mcp-server-miro"],
      "env": {
        "MIRO_TOKEN": "${MIRO_TOKEN}"
      }
    }
  }
}

Frequently asked questions

Can it reason across a whole board?

Yes — the list_items tool returns all items with text, position, and tags so the LLM can cluster by theme, propose affinity groups, or draft a summary frame.

How do I use it in a live workshop?

A common pattern: the facilitator pastes or dictates notes, Claude creates sticky notes via the MCP server, and the board updates in real time for remote participants.

Is there a free tier?

Miro offers a free plan with API access. Heavy write scenarios may hit rate limits, so production workshops usually use paid plans.

Sources

  1. Miro Developer Platform — accessed 2026-04-20
  2. Model Context Protocol — accessed 2026-04-20
  3. MCP servers directory — accessed 2026-04-20