MCP SSE to stdio proxy for Miro Design System. This proxy bridges the Miro Design System SSE (Server-Sent Events) MCP server to Claude Desktop's stdio transport protocol.
Copy and paste this command into your terminal:
curl -fsSL https://mirowolff.github.io/miro-mcp-proxy/install.sh -o install.sh && bash install.shThe installer will:
- Download the proxy script to
~/.miro-mcp-proxy.sh - Prompt you for your Miro access token and email
- Automatically configure Claude Desktop
- Be ready to use after restarting Claude Desktop
Generate your access token at: https://miro.design/mcp/token
If you prefer to install manually:
- Download the script: miro-mcp-proxy
- Generate your access token at https://miro.design/mcp/token
- Add this configuration to your Claude Desktop config:
macOS config path: ~/Library/Application Support/Claude/claude_desktop_config.json
"mcpServers": {
"Miro DS MCP": {
"command": "bash",
"args": ["/path/to/miro-mcp-proxy"],
"env": {
"MIRO_ACCESS_TOKEN": "your-token-here",
"MIRO_USER_EMAIL": "your-email@example.com"
}
}
}Replace:
/path/to/miro-mcp-proxywith the actual path where you saved the fileyour-token-herewith your Miro access tokenyour-email@example.comwith your Miro user email
MIT