mcp-miro MCP Server
Overview
MCP-Miro is a Model Context Protocol server designed to interface with the MIRO Whiteboard application, allowing advanced manipulation of digital boards, including sticky note creation and bulk operations. # how to use MCP-Miro? To use MCP-Miro, install it via mcp-get or manually set up the server configuration in your Claude Desktop application. Set your OAuth key as an environment variable or pass it using the --token argument. # key features of MCP-Miro? - Board content manipulation and sticky creation - Supports bulk operations for efficiency - Integration with Claude for creating MIRO equivalents from photos of stickies # use cases of MCP-Miro?
- Managing collaborative projects on MIRO using automated sticky note creations.
- Enhancing productivity by connecting MIRO whiteboards with external services through the Model Context Protocol.
- Creating customized workflows for team brainstorming sessions on MIRO. # FAQ from MCP-Miro? - What is the purpose of the MCP-Miro server? > The MCP-Miro server connects to MIRO, allowing users to programmatically manipulate boards through the Model Context Protocol. - How do I install MCP-Miro? > You can install it using the command:
npx @michaellatman/mcp-get@latest install @llmindset/mcp-miro. - Where can I find debugging tools for MCP-Miro? > You can use the MCP Inspector tool by runningnpm run inspectorto access debugging tools through your browser.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":174,"uuid":"2f369a24-9852-4850-9ad3-f3b61b049f75","name":"mcp-miro","title":"mcp-miro MCP Server","description":"","avatar_url":"https://avatars.githubusercontent.com/u/1936278?v=4","created_at":"2024-12-13T09:12:17.600Z","updated_at":"2024-12-13T12:28:11.478Z","status":"created","author_name":"evalstate","author_avatar_url":"https://avatars.githubusercontent.com/u/1936278?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/evalstate/mcp-miro","target":"_self","content":"$29","summary":"$2a","img_url":"https://camo.githubusercontent.com/c9fc73c9ddb30c632e8853bca9eef5181939d73821b09530a19caf0b4fdea9ec/68747470733a2f2f736d6974686572792e61692f62616467652f406c6c6d696e647365742f6d63702d6d69726f","type":null,"metadata":"{"star":"51","license":"Apache-2.0 license","language":"TypeScript","is_official":false,"latest_commit_time":"2024-12-23 15:11:21"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]
Add to your AI client
Use these steps to connect mcp-miro MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-miro-evalstate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-miro-evalstate"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-miro-evalstate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-miro-evalstate"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-miro-evalstate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-miro-evalstate"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-miro-evalstate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-miro-evalstate"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-miro-evalstate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-miro-evalstate"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-miro-evalstate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-miro-evalstate"
]
}
}
}