From 476a4cd3bfb68032344c6e6eb6241d46110a6e45 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:45:48 -0400 Subject: [PATCH] refactor(@angular/cli): update suggested MCP server configuration output The suggested MCP server command options now use the `-y` option for `npx`. This provides better supported for global usage of the Angular CLI MCP server in addition to the workspace usage. --- packages/angular/cli/src/commands/mcp/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/angular/cli/src/commands/mcp/cli.ts b/packages/angular/cli/src/commands/mcp/cli.ts index 363136525f37..b86de626f9c1 100644 --- a/packages/angular/cli/src/commands/mcp/cli.ts +++ b/packages/angular/cli/src/commands/mcp/cli.ts @@ -19,7 +19,7 @@ To start using the Angular CLI MCP Server, add this configuration to your host: "mcpServers": { "angular-cli": { "command": "npx", - "args": ["@angular/cli", "mcp"] + "args": ["-y", "@angular/cli", "mcp"] } } }