Skip to main content
Glama

MIRO MCP Server

A Model Context Protocol (MCP) server that enables Claude Desktop to interact with MIRO boards.

Features

  • List Boards: Get all accessible MIRO boards

  • Get Board Details: Retrieve specific board information

  • Get Board Items: Fetch all items/widgets from a board (sticky notes, text, shapes, cards, etc.)

  • Get Frames: List all frames in a board

  • Search Content: Search for text across all items in a board

Related MCP server: Miro MCP Server

Setup

1. Get MIRO API Token

  1. Go to MIRO Developer Portal

  2. Create a new app or use existing one

  3. Generate an access token with these scopes:

    • boards:read

    • boards:write (optional, for future enhancements)

2. Install Dependencies

npm install

3. Configure Environment

Create a .env file:

cp .env.example .env

Edit .env and add your MIRO access token:

MIRO_ACCESS_TOKEN=your_actual_token_here

4. Build the Server

npm run build

5. Configure Claude Desktop

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "miro": {
      "command": "node",
      "args": ["/Users/romanojl/Claude-Projects/MIRO-mcp/dist/index.js"],
      "env": {
        "MIRO_ACCESS_TOKEN": "your_miro_access_token_here"
      }
    }
  }
}

Note: Replace the path in args with the actual path to your built index.js file.

6. Restart Claude Desktop

After configuration, restart Claude Desktop to load the MCP server.

Development

Run in development mode with auto-reload:

npm run dev

Available Tools in Claude

Once configured, you can use these commands in Claude Desktop:

  • list_boards - List your MIRO boards

  • get_board - Get details about a specific board

  • get_board_items - Get all items from a board

  • get_board_frames - Get all frames from a board

  • search_board_content - Search for text in board items

Example Usage in Claude:

"Can you show me all my MIRO boards?"

"Get all sticky notes from board [board_id]"

"Search for 'project timeline' in board [board_id]"

Troubleshooting

  1. Authentication Error: Ensure your MIRO access token is valid and has the correct permissions

  2. Server Not Found: Check that the path in Claude Desktop config points to the correct dist/index.js file

  3. No Boards Found: Verify your token has access to at least one board

License

MIT

Available Tools

5 tools
get_boardC

Get details about a specific MIRO board

ParametersJSON Schema
NameRequiredDescriptionDefault
board_idYesThe ID of the MIRO board

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. While 'Get details about' implies a read-only operation, it doesn't specify what details are returned, whether authentication is required, if there are rate limits, or what happens with invalid board IDs. The description is too vague about the actual behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that gets straight to the point with zero wasted words. It's appropriately sized for a simple retrieval tool and front-loads the essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description is inadequate. It doesn't explain what 'details' are returned, the response format, error conditions, or authentication requirements. Given the lack of structured information elsewhere, the description should provide more complete context about the tool's behavior and outputs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the single parameter 'board_id' clearly documented as 'The ID of the MIRO board'. The description adds no additional parameter information beyond what the schema already provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get details about') and resource ('a specific MIRO board'), making the purpose immediately understandable. However, it doesn't distinguish this tool from its sibling 'list_boards' (which presumably lists multiple boards) or 'get_board_frames'/'get_board_items' (which get specific components of boards).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance about when to use this tool versus alternatives. It doesn't mention that this retrieves details for a single board (versus 'list_boards' for multiple boards) or that it returns general board metadata (versus 'get_board_frames'/'get_board_items' for specific components). No prerequisites or exclusions are stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_board_framesC

Get all frames from a MIRO board

ParametersJSON Schema
NameRequiredDescriptionDefault
board_idYesThe ID of the MIRO board

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It states 'Get all frames' which implies a read operation, but doesn't disclose behavioral traits like whether this requires authentication, has rate limits, returns paginated results, or what happens with invalid board IDs. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's function without unnecessary words. It's appropriately sized and front-loaded with the core action, making it easy to parse quickly. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (retrieving content from a board), lack of annotations, and no output schema, the description is incomplete. It doesn't explain what frames are, the format of returned data, error conditions, or authentication needs. For a tool that likely returns structured data, more context is needed to use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description doesn't add any parameter semantics beyond what the schema provides. With 100% schema description coverage (the 'board_id' parameter is fully documented in the schema), the baseline is 3. The description doesn't explain what a 'frame' is or how the board_id relates to the retrieval, so it doesn't compensate but doesn't need to given the schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get all frames') and resource ('from a MIRO board'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'get_board_items' or 'search_board_content' which might also retrieve board content, leaving some ambiguity about what specifically distinguishes this tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With siblings like 'get_board_items' and 'search_board_content' that might retrieve similar content, there's no indication of whether this is for frames specifically, what frames are, or when to choose this over other tools. Usage context is implied but not explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_board_itemsC

Get all items (widgets) from a MIRO board

ParametersJSON Schema
NameRequiredDescriptionDefault
board_idYesThe ID of the MIRO board
item_typeNoFilter by item type (sticky_note, text, shape, card, etc.)
limitNoMaximum number of items to return (default: 50, max: 100)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It states the tool retrieves items but doesn't disclose behavioral traits like pagination (implied by limit parameter), rate limits, authentication needs, error conditions, or return format. This is inadequate for a read operation with parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose ('Get all items from a MIRO board') with clarifying parenthetical ('widgets'). There is zero wasted verbiage, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations and no output schema, the description is incomplete. It doesn't explain what 'items' entail (e.g., structure, fields), how results are returned (e.g., list format), or handling of large datasets beyond the limit parameter. For a tool with 3 parameters and retrieval complexity, more context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so parameters are fully documented in the schema. The description adds no additional meaning beyond implying retrieval of 'all items', which aligns with the schema but doesn't compensate for gaps. Baseline 3 is appropriate as the schema handles parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get all items') and resource ('from a MIRO board'), specifying that items are widgets. It distinguishes from siblings like 'get_board' (board metadata) and 'list_boards' (multiple boards), but doesn't explicitly differentiate from 'get_board_frames' (specific item type) or 'search_board_content' (filtered search).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like 'get_board_frames' (for frames only) or 'search_board_content' (for content-based filtering). The description implies it retrieves all items, but lacks explicit usage context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_boardsB

List all MIRO boards accessible to the user

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of boards to return (default: 10, max: 50)

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but offers minimal behavioral insight. It states the action ('List all... accessible') but doesn't disclose traits like pagination behavior, rate limits, authentication requirements, error handling, or return format. For a list operation with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves beyond its basic purpose.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. It directly states the tool's function ('List all MIRO boards accessible to the user') with zero redundancy or fluff, making it easy to parse and understand immediately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for effective tool use. It covers the basic purpose but misses critical context: no information on return values (e.g., board list structure), error cases, authentication needs, or behavioral constraints like rate limits. For a list tool with no structured support, the description should provide more operational guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds no parameter information beyond what the schema provides. With 100% schema description coverage for the single parameter 'limit', the schema fully documents its type, description, and default value. The description doesn't compensate or add context about parameter usage, so it meets the baseline of 3 where the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('List') and resource ('MIRO boards'), specifying scope ('all... accessible to the user'). It distinguishes from siblings like 'get_board' (singular) and 'search_board_content' (filtered search) by emphasizing comprehensive listing without filtering. However, it doesn't explicitly contrast with all siblings like 'get_board_frames' or 'get_board_items', which target specific board components rather than board lists.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving accessible boards, but provides no explicit guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication), exclusions, or compare with sibling tools like 'search_board_content' for filtered searches. The context is clear but lacks proactive guidance for tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_board_contentC

Search for text content across all items in a MIRO board

ParametersJSON Schema
NameRequiredDescriptionDefault
board_idYesThe ID of the MIRO board
queryYesText to search for in board items

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action but lacks details on permissions, rate limits, response format, or whether it's read-only or destructive. This is a significant gap for a search tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's function without any wasted words. It is appropriately sized and front-loaded, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (search operation with 2 parameters), lack of annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects, usage context, or return values, leaving gaps that could hinder effective tool invocation by an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already documents both parameters ('board_id' and 'query') adequately. The description adds no additional meaning beyond implying text search, which aligns with the schema but doesn't provide extra syntax or format details, meeting the baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'search' and resource 'text content across all items in a MIRO board', making the purpose evident. However, it doesn't explicitly differentiate from sibling tools like 'get_board_items' or 'list_boards', which might also involve board content retrieval, so it misses full sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention scenarios for searching text versus using other tools for board metadata or items, leaving the agent without explicit usage context or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: list_boards enumerates boards, get_board retrieves board metadata, get_board_frames fetches frames, get_board_items fetches widgets, and search_board_content performs text searches. The descriptions specify unique targets (boards, frames, items, content), eliminating any ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case, using verbs like 'get', 'list', and 'search' paired with specific nouns (e.g., board, board_frames, board_items). There are no deviations in style or convention, making the set predictable and readable.

Tool Count5/5

With 5 tools, the server is well-scoped for interacting with MIRO boards, covering essential operations like listing, retrieving details, fetching components (frames/items), and searching content. Each tool earns its place without feeling excessive or insufficient for the domain.

Completeness4/5

The toolset provides strong read/search coverage for MIRO boards, including listing, metadata retrieval, and content exploration. However, there are minor gaps in write operations (e.g., creating/updating boards or items), which agents might need to work around for full CRUD functionality, though the read-focused scope is clear.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jlromano/miro-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server