From fc1c77de64c39522f34b9a946d98fe791fa9477a Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Wed, 18 Feb 2026 20:38:01 +0100 Subject: [PATCH] Add deprecation warning to plugin UI --- penpot-plugin/index.html | 6 ++++++ penpot-plugin/src/plugin.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/penpot-plugin/index.html b/penpot-plugin/index.html index b2c08b5..9a936e2 100644 --- a/penpot-plugin/index.html +++ b/penpot-plugin/index.html @@ -6,6 +6,12 @@ Penpot plugin example +
+ IMPORTANT: You are using an outdated version of the Penpot MCP server. The MCP server has been integrated + into the Penpot repository. Find the latest version here:
+ https://github.com/penpot/penpot/tree/develop/mcp +
+
Not connected
diff --git a/penpot-plugin/src/plugin.ts b/penpot-plugin/src/plugin.ts index e6a1fad..c6f614a 100644 --- a/penpot-plugin/src/plugin.ts +++ b/penpot-plugin/src/plugin.ts @@ -11,7 +11,7 @@ declare const IS_MULTI_USER_MODE: boolean; const isMultiUserMode = typeof IS_MULTI_USER_MODE !== "undefined" ? IS_MULTI_USER_MODE : false; // Open the plugin UI (main.ts) -penpot.ui.open("Penpot MCP Plugin", `?theme=${penpot.theme}&multiUser=${isMultiUserMode}`, { width: 158, height: 200 }); +penpot.ui.open("Penpot MCP Plugin", `?theme=${penpot.theme}&multiUser=${isMultiUserMode}`, { width: 300, height: 250 }); // Handle messages penpot.ui.onMessage((message) => {