Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
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
Next Next commit
feat: add update guide mcp tool
  • Loading branch information
sinedied committed Jul 16, 2025
commit a1c70cb1c70a0cee941df881003d6ad637a2bc55
2 changes: 2 additions & 0 deletions packages/angular/cli/src/commands/mcp/mcp-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { z } from 'zod';
import type { AngularWorkspace } from '../../utilities/config';
import { VERSION } from '../../utilities/version';
import { registerDocSearchTool } from './tools/doc-search';
import { registerUpdateTool } from './tools/update';

export async function createMcpServer(context: {
workspace?: AngularWorkspace;
Expand Down Expand Up @@ -131,6 +132,7 @@ export async function createMcpServer(context: {
);

await registerDocSearchTool(server);
await registerUpdateTool(server);

return server;
}
Loading