Skip to content
VS Code

Miro for VS Code

io.github.olgasafonova/miro-mcp-server

Control Miro whiteboards with AI. 110 tools for boards, diagrams, mindmaps, comments, SVG.

client:VS Code transport:stdio runtime:oci

Install Miro in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "miro-access-token",
      "description": "MIRO_ACCESS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "miro-mcp-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/olgasafonova/miro-mcp-server:1.25.0"
      ],
      "env": {
        "MIRO_ACCESS_TOKEN": "${input:miro-access-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Miro in other clients