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
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
Prev Previous commit
refactor: rename to follow conventions
  • Loading branch information
sinedied committed Jul 16, 2025
commit 21d634ffcb231c7f3f6415c5ed1fcb401ce16060
2 changes: 1 addition & 1 deletion packages/angular/cli/src/commands/mcp/mcp-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +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';
import { registerUpdateTool } from './tools/update-guide';

export async function createMcpServer(context: {
workspace?: AngularWorkspace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { z } from 'zod';
import { ApplicationComplexity, RECOMMENDATIONS, type Step } from '../recommendations.js';
import { ApplicationComplexity, RECOMMENDATIONS, type Step } from '../recommendations';

interface Option {
id: keyof Step;
Expand Down