Skip to content

Commit 1be35b3

Browse files
committed
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. (cherry picked from commit ea4fb9d)
1 parent 9573024 commit 1be35b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/angular/cli/src/commands/mcp/mcp-server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,14 @@ const STABLE_TOOLS = [
3030
DOC_SEARCH_TOOL,
3131
FIND_EXAMPLE_TOOL,
3232
LIST_PROJECTS_TOOL,
33+
ZONELESS_MIGRATION_TOOL,
3334
] as const;
3435

3536
/**
3637
* The set of tools that are available but not enabled by default.
3738
* These tools are considered experimental and may have limitations.
3839
*/
39-
export const EXPERIMENTAL_TOOLS = [MODERNIZE_TOOL, ZONELESS_MIGRATION_TOOL] as const;
40+
export const EXPERIMENTAL_TOOLS = [MODERNIZE_TOOL] as const;
4041

4142
export async function createMcpServer(
4243
options: {

0 commit comments

Comments
 (0)