From 556dc2aaef1780d7e942e09d9fe4f7abdf3157a3 Mon Sep 17 00:00:00 2001 From: Konstantin Dinev Date: Fri, 3 Apr 2026 16:36:09 +0300 Subject: [PATCH 1/2] Update build command for MCP in README Closes #1599 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13a3508ce..a9cf6b12a 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ See the [Contribution guide](https://github.com/IgniteUI/igniteui-cli/blob/maste npm install npm run build cd ../../.. - npm run build:mcp-bundle + npm run build:mcp ``` 4. Build the monorepo packages: `npm run build` 5. Open in Visual Studio Code From e54eedf957dca20a57c30232581f83dafcfb9d93 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Apr 2026 11:20:36 +0000 Subject: [PATCH 2/2] Fix remaining build:mcp-bundle references in README Agent-Logs-Url: https://github.com/IgniteUI/igniteui-cli/sessions/d2c42627-5d4b-4634-97f6-66691755a3ff Co-authored-by: kdinev <1472513+kdinev@users.noreply.github.com> --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a9cf6b12a..23eed322e 100644 --- a/README.md +++ b/README.md @@ -238,16 +238,14 @@ npm run build:docs:all # Build both > **Note:** Web Components requires a one-time library build (`npm run build:publish` in the submodule) before TypeDoc can run. The build script handles this automatically. -**Bundle MCP into CLI** (from the repo root): +**Build MCP server** (from the repo root): ```bash -npm run build:mcp-bundle # Copies dist/ and docs/ into packages/cli/mcp/ +npm run build:mcp # Compiles MCP server TypeScript and copies SQLite DB into dist/ ``` -This copies the compiled MCP server, SQLite documentation database, and API reference docs into the CLI package. The `packages/cli/mcp/` directory is a build artifact (gitignored) and must be regenerated before publishing. - **Test the MCP server locally:** ```bash -npm run build:mcp-bundle +npm run build:mcp npm run build node packages/cli/lib/cli.js mcp # Start via CLI # or directly: @@ -272,7 +270,7 @@ npm run build:docs:all # Init submodules + generate Angular # 4. Bundle MCP into CLI (from repo root) cd ../../.. -npm run build:mcp-bundle # Copy dist/ + docs/ → packages/cli/mcp/ +npm run build:mcp # Build MCP server # 5. Build all packages for publishing npm run build-pack