New to Kendo UI for AngularStart a free 30-day trial

AI-Assisted Migration

Updated on May 14, 2026

Kendo UI for Angular provides AI-assisted migration through the Upgrade Assistant—a dedicated tool in the Kendo UI for Angular MCP server that helps you upgrade between major versions. It combines deterministic codemods with AI-powered code analysis to provide a reliable, end-to-end migration experience.

How It Works

The Upgrade Assistant uses a two-phase hybrid approach:

  1. Automated transformations—The assistant invokes the Kendo CLI, which updates your NPM packages and runs all relevant codemods for the migration path. Some codemods rewrite your source files directly (for example, renaming a property across your project), while others identify changes that require manual intervention and pass targeted guidance to the AI.
  2. AI-powered resolution—The assistant reviews the codemod results and either applies further fixes automatically or guides you through any remaining manual steps, such as interface changes or project-specific edge cases.

This combination ensures that straightforward changes are handled automatically, while complex issues are resolved with precision.

Prerequisites

To use the Upgrade Assistant, you need:

  • A compatible MCP client with MCP server support, such as VS Code or Cursor.
  • An active Telerik subscription or trial license. See the license requirements for details.
  • The Kendo UI for Angular MCP server installed and configured in your IDE.

    If you have not done this yet, follow the Getting Started with the Agentic UI Generator guide, which walks you through installing the Kendo CLI, configuring the Kendo UI for Angular MCP server, and activating your license.

Upgrade Your Project

To upgrade your Kendo UI for Angular project to a new major version:

  1. Open your IDE and start a new chat session.

  2. Invoke the Upgrade Assistant with a prompt describing the migration path:

    prompt
    #kendo_upgrade_assistant Upgrade my project from Kendo UI for Angular v22 to v23

    To target a specific package instead of the entire project, include the package name:

    prompt
    #kendo_upgrade_assistant Upgrade @progress/kendo-angular-grid from v22 to v23
  3. The assistant invokes the Kendo CLI, which updates your NPM packages and runs all codemods for the specified migration path. For a full list of what each codemod covers, see Available Codemods.

  4. The assistant reviews the results and either applies further fixes automatically or guides you through any remaining manual steps.

  5. Review the changes applied to your codebase.

  6. Accept the suggested fixes and re-run the build to confirm all errors are resolved.

  7. Do a test run of your project to verify that everything works as expected.

If you encounter issues with the MCP server during the migration, refer to the AI Tools Troubleshooting guide.

When to Use the Upgrade Assistant

Use the Upgrade Assistant when:

  • You are upgrading between major Kendo UI for Angular versions and want end-to-end guidance.
  • Codemods alone have left compilation errors or project-specific issues that require further resolution.
  • You want to reduce manual migration effort and get consistent outcomes across a large codebase.

If you prefer to run only the automated codemods without AI assistance, use the Kendo CLI directly.

See Also