From 9cb8e829268ca10f341d860eacf740be92ff6aec Mon Sep 17 00:00:00 2001 From: Horea Porutiu Date: Mon, 9 Mar 2026 17:09:52 +0100 Subject: [PATCH 1/2] Add Miro MCP server to partner registry Register the official Miro MCP server for visual collaboration, enabling AI assistants to manage boards, generate diagrams, extract context for code generation, and analyze board content via the remote endpoint at https://mcp.miro.com. Made-with: Cursor --- partners/servers/miro-mcp-server.json | 66 +++++++++++++++++++++++++++ 1 file changed, 66 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 00000000..26410060 --- /dev/null +++ b/partners/servers/miro-mcp-server.json @@ -0,0 +1,66 @@ +{ + "name": "miro-mcp-server", + "title": "Miro", + "summary": "Official Miro MCP server for visual collaboration - create diagrams, docs, and tables. Manage and extract context from Miro boards.", + "description": "Official Miro MCP server that enables AI assistants to interact with Miro's visual collaboration platform. Supports board management, AI-powered diagram generation, context extraction for code generation, and board insights. Connects to Miro's remote MCP endpoint using streamable HTTP transport with OAuth2 authentication.", + "kind": "mcp", + "vendor": "Partner", + "icon": "https://avatars.githubusercontent.com/miroapp?s=64", + "license": { + "name": "Miro Terms of Service", + "url": "https://miro.com/legal/terms-of-service/" + }, + "externalDocumentation": { + "title": "Miro MCP Server Documentation", + "url": "https://developers.miro.com/docs/miro-mcp" + }, + "repository": { + "url": "https://github.com/miroapp/miro-ai", + "source": "github" + }, + "remote": "https://mcp.miro.com", + "remoteType": "streamable-http", + "supportContactInfo": { + "name": "Miro Developer Support", + "url": "https://developers.miro.com" + }, + "visibility": "true", + "categories": "Collaboration", + "useCases": [ + { + "name": "AI diagram generation", + "description": "Generate diagrams, flowcharts, and visual representations on Miro boards using AI-powered tools for architecture planning and documentation." + }, + { + "name": "Context to code", + "description": "Extract structured context from Miro boards to inform code generation, enabling developers to translate visual designs and documentation into implementation." + }, + { + "name": "Board insights and analysis", + "description": "Analyze board content and structure to generate insights, summaries, and actionable information from visual collaboration artifacts." + }, + { + "name": "Brainstorming facilitation", + "description": "Guide brainstorming sessions by creating and organizing content on Miro boards, helping teams ideate and structure their ideas visually." + } + ], + "tags": [ + "collaboration", + "whiteboard", + "diagrams", + "visual-collaboration", + "brainstorming" + ], + "securitySchemes": { + "miroOAuth": { + "type": "oauth2", + "description": "Authenticate with Miro using OAuth2 authorization code flow.", + "flows": ["authorizationCode"], + "authorizationUrl": "https://mcp.miro.com/auth", + "tokenUrl": "https://mcp.miro.com/token", + "scopes": ["boards:read", "boards:write"] + } + }, + "versionName": "original", + "customProperties": { "x-ms-preview": true } +} From 5adec63f3fd254a3e3c4f8476d0e962ecc808d58 Mon Sep 17 00:00:00 2001 From: Horea Porutiu Date: Tue, 10 Mar 2026 10:12:23 +0100 Subject: [PATCH 2/2] fix the auth url --- partners/servers/miro-mcp-server.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/partners/servers/miro-mcp-server.json b/partners/servers/miro-mcp-server.json index 26410060..a8063fed 100644 --- a/partners/servers/miro-mcp-server.json +++ b/partners/servers/miro-mcp-server.json @@ -56,7 +56,7 @@ "type": "oauth2", "description": "Authenticate with Miro using OAuth2 authorization code flow.", "flows": ["authorizationCode"], - "authorizationUrl": "https://mcp.miro.com/auth", + "authorizationUrl": "https://mcp.miro.com/authorize", "tokenUrl": "https://mcp.miro.com/token", "scopes": ["boards:read", "boards:write"] }