Skip to content

feat(@angular/cli): add update guide mcp tool #30722

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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
feat: update input schema to use enum for versions
  • Loading branch information
sinedied committed Jul 16, 2025
commit 87ada440a67e14a92f8529c63bec47c116b4b620
4 changes: 2 additions & 2 deletions packages/angular/cli/src/commands/mcp/tools/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ export async function registerUpdateTool(server: McpServer): Promise<void> {
},
inputSchema: {
fromVersion: z
.string()
.enum(versions.map((v) => v.name) as [string, ...string[]])
.describe(
'The current Angular version to migrate from (e.g., "18.0", "19.0").' +
' Must be a valid Angular version.',
),
toVersion: z
.string()
.enum(versions.map((v) => v.name) as [string, ...string[]])
.describe(
'The target Angular version to migrate to (e.g., "19.0", "20.0").' +
' Must be a valid Angular version and higher than fromVersion.',
Expand Down