From 912f80e71c680552783d0407b7c2b1a057ac2d3f Mon Sep 17 00:00:00 2001 From: Devin AI Date: Thu, 12 Dec 2024 17:07:45 +0000 Subject: [PATCH 1/2] feat: add @llmindset/mcp-miro to package list Co-Authored-By: Michael Latman --- packages/package-list.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages/package-list.json b/packages/package-list.json index 71871f1..19f397d 100644 --- a/packages/package-list.json +++ b/packages/package-list.json @@ -332,6 +332,15 @@ "license": "MIT", "runtime": "node" }, + { + "name": "@llmindset/mcp-miro", + "description": "A Model Context Protocol server to connect to the MIRO Whiteboard Application", + "vendor": "llmindset.co.uk", + "sourceUrl": "https://github.com/evalstate/mcp-miro", + "homepage": "https://github.com/evalstate/mcp-miro#readme", + "license": "Proprietary", + "runtime": "node" + }, { "name": "@strowk/mcp-k8s", "description": "MCP server connecting to Kubernetes", From 6af93ef81a5d3cd19e32c334ae3a7bfcdd13f3a2 Mon Sep 17 00:00:00 2001 From: Devin AI Date: Thu, 12 Dec 2024 17:16:51 +0000 Subject: [PATCH 2/2] fix: update @llmindset/mcp-miro license and add env var documentation Co-Authored-By: Michael Latman --- packages/package-list.json | 2 +- src/helpers/index.ts | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/package-list.json b/packages/package-list.json index 19f397d..1d38954 100644 --- a/packages/package-list.json +++ b/packages/package-list.json @@ -338,7 +338,7 @@ "vendor": "llmindset.co.uk", "sourceUrl": "https://github.com/evalstate/mcp-miro", "homepage": "https://github.com/evalstate/mcp-miro#readme", - "license": "Proprietary", + "license": "Apache-2.0", "runtime": "node" }, { diff --git a/src/helpers/index.ts b/src/helpers/index.ts index c380d93..51fbfec 100644 --- a/src/helpers/index.ts +++ b/src/helpers/index.ts @@ -152,5 +152,14 @@ export const packageHelpers: PackageHelpers = { required: true } } + }, + '@llmindset/mcp-miro': { + requiredEnvVars: { + 'MIRO-OAUTH-KEY': { + description: 'Authentication token for Miro API access (can also be provided via --token argument)', + required: true, + argName: 'token' + } + } } };