From d7dd27c0f17b22dcdaf2a18dd3ff0af87a19c4e6 Mon Sep 17 00:00:00 2001 From: Horea Porutiu Date: Wed, 24 Dec 2025 11:29:07 -0800 Subject: [PATCH 1/3] adding Miro's MCP Server to partner directory --- partners/servers/miro-mcp-server.json | 70 +++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 partners/servers/miro-mcp-server.json diff --git a/partners/servers/miro-mcp-server.json b/partners/servers/miro-mcp-server.json new file mode 100644 index 0000000..0060076 --- /dev/null +++ b/partners/servers/miro-mcp-server.json @@ -0,0 +1,70 @@ +{ + "name": "miro-mcp-server", + "title": "Miro MCP Server", + "summary": "Connect AI assistants to Miro boards for reading visual context and generating diagrams.", + "description": "The official Miro Model Context Protocol (MCP) server. It bridges AI assistants directly with Miro boards, enabling them to read visual context (wireframes, diagrams, sticky notes), generate code from board content, and visualize complex logic by creating diagrams on the fly.", + "kind": "mcp", + "license": { + "name": "Miro MCP Server Beta Acknowledgement", + "url": "https://help.miro.com/hc/en-us/articles/31621611644306-Miro-MCP-Server-Beta-Acknowledgement" + }, + "icon": "https://asset.brandfetch.io/idAnDTFapY/idYC5f2L1X.png", + "externalDocumentation": { + "title": "Miro MCP Documentation", + "url": "https://developers.miro.com/docs/mcp-intro" + }, + "repository": { + "url": "https://github.com/miroapp/miro-ai", + "source": "github" + }, + "remote": "https://mcp.miro.com", + "remoteType": "streamable-http", + "versionName": "Original", + "useCases": [ + { + "name": "Generate Diagrams from Code", + "description": "Create system architecture diagrams, flowcharts, and sequence diagrams directly on Miro boards from code repositories or text descriptions." + }, + { + "name": "Generate Code from Board Content", + "description": "Convert PRDs, wireframes, diagrams, and prototypes on Miro boards into working code implementations." + }, + { + "name": "Read and Summarize Board Context", + "description": "Retrieve and analyze content from sticky notes, text, shapes, and images to understand project requirements or architecture." + }, + { + "name": "Visual Documentation", + "description": "Explain complex code logic or system architecture by generating visual diagrams directly onto Miro boards." + } + ], + "tags": [ + "productivity", + "design", + "visualization", + "collaboration", + "diagramming" + ], + "categories": "Collaboration", + "vendor": "Partner", + "visibility": "true", + "packages": [], + "securitySchemes": { + "miroOauth": { + "type": "oauth2", + "description": "Authenticate with Miro using OAuth2 authorization code flow.", + "authorizationUrl": "https://miro.com/oauth/authorize", + "tokenUrl": "https://api.miro.com/v1/oauth/token", + "scopes": [ + "boards:read", + "boards:write" + ], + "flows": ["authorizationCode"] + } + }, + "supportContactInfo": { + "name": "Miro Developer Support", + "email": "devrel@miro.com" + } +} + From aa9b68c3bfb9f7cdddb41b7cbe20ad67d90fee1b Mon Sep 17 00:00:00 2001 From: Horea Porutiu Date: Mon, 5 Jan 2026 15:22:32 -0800 Subject: [PATCH 2/3] add remotes array --- partners/servers/miro-mcp-server.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/partners/servers/miro-mcp-server.json b/partners/servers/miro-mcp-server.json index 0060076..f81a9e7 100644 --- a/partners/servers/miro-mcp-server.json +++ b/partners/servers/miro-mcp-server.json @@ -17,8 +17,12 @@ "url": "https://github.com/miroapp/miro-ai", "source": "github" }, - "remote": "https://mcp.miro.com", - "remoteType": "streamable-http", + "remotes": [ + { + "type": "streamable-http", + "url": "https://mcp.miro.com" + } + ], "versionName": "Original", "useCases": [ { From cff98acafa0f6cbe7f576dae68138bbfbe59f8c3 Mon Sep 17 00:00:00 2001 From: Horea Porutiu Date: Tue, 6 Jan 2026 13:38:49 -0800 Subject: [PATCH 3/3] Remove repository and use remote string format --- partners/servers/miro-mcp-server.json | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/partners/servers/miro-mcp-server.json b/partners/servers/miro-mcp-server.json index f81a9e7..3c6ef2f 100644 --- a/partners/servers/miro-mcp-server.json +++ b/partners/servers/miro-mcp-server.json @@ -13,16 +13,7 @@ "title": "Miro MCP Documentation", "url": "https://developers.miro.com/docs/mcp-intro" }, - "repository": { - "url": "https://github.com/miroapp/miro-ai", - "source": "github" - }, - "remotes": [ - { - "type": "streamable-http", - "url": "https://mcp.miro.com" - } - ], + "remote": "https://mcp.miro.com", "versionName": "Original", "useCases": [ {