From 11b125c866895ed6a1ce239cc0c1a3da72056152 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 5 Nov 2025 12:31:15 -0500 Subject: [PATCH] fix(@angular/cli): promote zoneless migration MCP tool to stable The zoneless migration tool has been moved from the experimental to the stable toolset within the MCP server, making it available by default. --- packages/angular/cli/src/commands/mcp/mcp-server.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/angular/cli/src/commands/mcp/mcp-server.ts b/packages/angular/cli/src/commands/mcp/mcp-server.ts index 9f84bcf55704..8a006c98be60 100644 --- a/packages/angular/cli/src/commands/mcp/mcp-server.ts +++ b/packages/angular/cli/src/commands/mcp/mcp-server.ts @@ -30,13 +30,14 @@ const STABLE_TOOLS = [ DOC_SEARCH_TOOL, FIND_EXAMPLE_TOOL, LIST_PROJECTS_TOOL, + ZONELESS_MIGRATION_TOOL, ] as const; /** * The set of tools that are available but not enabled by default. * These tools are considered experimental and may have limitations. */ -export const EXPERIMENTAL_TOOLS = [MODERNIZE_TOOL, ZONELESS_MIGRATION_TOOL] as const; +export const EXPERIMENTAL_TOOLS = [MODERNIZE_TOOL] as const; export async function createMcpServer( options: {