Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1ee9ce3

Browse files
clydinalan-agius4
authored andcommitted
feat(@angular/cli): promote MCP find_examples tool to a stable tool
The `find_examples` MCP tool has undergone significant enhancements, including the implementation of a structured relational database, advanced filtering, weighted search ranking, and snippet support. Given its maturity, robustness, and utility, the tool is now considered stable and is promoted to the default set of enabled tools for the MCP server. It is moved from the experimental list to the stable list.
1 parent 11cee1a commit 1ee9ce3

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,18 @@ import { AnyMcpToolDeclaration, registerTools } from './tools/tool-registry';
2323
* The set of tools that are enabled by default for the MCP server.
2424
* These tools are considered stable and suitable for general use.
2525
*/
26-
const STABLE_TOOLS = [BEST_PRACTICES_TOOL, DOC_SEARCH_TOOL, LIST_PROJECTS_TOOL] as const;
26+
const STABLE_TOOLS = [
27+
BEST_PRACTICES_TOOL,
28+
DOC_SEARCH_TOOL,
29+
FIND_EXAMPLE_TOOL,
30+
LIST_PROJECTS_TOOL,
31+
] as const;
2732

2833
/**
2934
* The set of tools that are available but not enabled by default.
3035
* These tools are considered experimental and may have limitations.
3136
*/
32-
export const EXPERIMENTAL_TOOLS = [
33-
FIND_EXAMPLE_TOOL,
34-
MODERNIZE_TOOL,
35-
ZONELESS_MIGRATION_TOOL,
36-
] as const;
37+
export const EXPERIMENTAL_TOOLS = [MODERNIZE_TOOL, ZONELESS_MIGRATION_TOOL] as const;
3738

3839
export async function createMcpServer(
3940
options: {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /