From 8186f3c87c58f1201f3f4478186471f3717e2df5 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Mon, 9 Feb 2026 12:17:57 +0100 Subject: [PATCH] :books: Remove misleading information from README The types build is not part of the bootstrap, and it is not relevant to regular users (only to developers). Information on how to apply it is now in types-generator/README.md --- mcp/README.md | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/mcp/README.md b/mcp/README.md index c8d5a94e0e..9e9821c065 100644 --- a/mcp/README.md +++ b/mcp/README.md @@ -90,32 +90,6 @@ This bootstrap command will: * build all components (`pnpm -r run build`) * start all components (`pnpm -r --parallel run start`) -If you want to have types scrapped from a remote repository, the best -approach is executing the following: - -```shell -PENPOT_PLUGINS_API_DOC_URL=https://doc.plugins.penpot.app pnpm run build:types -pnpm run bootstrap -``` - -Or this, if you want skip build step bacause you have already have all -build artifacts ready (per example from previous `bootstrap` command): - -``` -PENPOT_PLUGINS_API_DOC_URL=https://doc.plugins.penpot.app pnpm run build:types -pnpm run start -``` - -If you want just to update the types definitions with the plugins api doc from the -current branch: - -```shell -pnpm run build:types -``` - -(That command will build plugins doc locally and will generate the types yaml from -the locally build documentation) - ### 2. Load the Plugin in Penpot and Establish the Connection > [!NOTE]