MCP Miro Server MCP Server

Miro integration for Model Context Protocol

Local serverstdioGo

What is the MCP Miro Server MCP server?

MCP Miro Server MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Miro integration for Model Context Protocol.

What you get

Model Context Protocol (MCP) server integrating with the Miro platform. It enables AI assistants (like Claude) to access Miro boards and manage their content through a standardized interface.

What the assistant can call

Once MCP Miro Server is connected, these are the calls the assistant has available:

  • Requirements — The Requirements tool exposed by this server
  • Tools — The Tools tool exposed by this server

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Configuration and credentials

You will need one environment variable: MIRO_ACCESS_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js v16 or newer installed - Miro account with API token

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP Miro Server's toolset — Requirements, Tools — is a fair guide to whether it matches your workflow. It is maintained by k-jarzyna; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp miro server mcp server does with a few real requests.

Available tools

ToolWhat it does
RequirementsThe Requirements tool exposed by this server.
ToolsThe Tools tool exposed by this server.

How to install the MCP Miro Server MCP server

{
   "mcpServers":{
      "miro":{
         "command":"npx",
         "args":[
            "-y",
            "@k-jarzyna/mcp-miro"
         ],
         "env":{
            "MIRO_ACCESS_TOKEN":"your_miro_access_token"
         }
      }
   }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js v16 or newer installed - Miro account with API token
VariableDescriptionRequired
MIRO_ACCESS_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Miro Server to Requirements.
  • Use MCP Miro Server to Tools.

Frequently asked questions

Node.js v16+, a Miro account, and a Miro API token with permissions: boards:read, boards:write, identity:read, identity:write, team:read, team:write.