Skip to content

refactor(@angular/cli): update suggested MCP server configuration output #30815

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
clydin committed Jul 31, 2025
commit 476a4cd3bfb68032344c6e6eb6241d46110a6e45
2 changes: 1 addition & 1 deletion packages/angular/cli/src/commands/mcp/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
}
}
Expand Down