Getting Started with the Agentic UI Generator
The Agentic UI Generator is an intelligent development tool delivered through the Kendo UI for Angular MCP server that enables UI generation from natural language prompts. Once configured and authenticated, you can use the Agentic UI Generator tool (#kendo_ui_generator) together with the available specialized MCP assistants.
This article describes how to install and use the Kendo UI for Angular Agentic UI Generator in AI-powered IDEs like Visual Studio Code and Cursor.
Prerequisites
To use the Kendo UI for Angular MCP server, you need:
- A compatible MCP client, such as VS Code or Cursor, with support for MCP server integrations.
- An active Telerik license, either trial or subscription, that provides access to the Kendo UI for Angular MCP server.
Quick Start
Instead of manually creating configuration files, you can use the Kendo CLI and the built-in Getting Started Assistant to handle the entire setup automatically - whether you are starting a new project or adding Kendo UI for Angular to an existing one.
Follow these steps to set up the Agentic UI Generator and use it in your IDE (VS Code or another supported AI-enabled IDE):
-
Open your terminal and install the Kendo CLI globally:
shnpm i -g @progress/kendo-cli -
Configure the Kendo UI for Angular MCP server for your IDE and set up your Telerik license in a single step with the Kendo CLI:
shnpx kendo angular setup -
Create a new empty folder for your project and open it in your IDE. Then, in the AI chat interface, invoke the Getting Started Assistant:
prompt#kendo_getting_started_assistant create a new Angular project
-
Ensure you have a supported license and set up your Telerik license key globally on your machine or in the
mcp.jsonconfiguration. The server automatically recognizes your license and activates the available MCP tools.shnpm i @progress/kendo-licensing npx kendo-ui-license refresh && npx kendo-ui-license activate -
To add the MCP server to your IDE, add the following
mcp.jsonconfiguration in your workspace:For more information about using MCP servers in Visual Studio Code, refer to Use MCP servers in VS Code.
Make sure that
chat.mcp.enabledis enabled in the VS Code settings.Workspace Configuration
To enable the Kendo UI for Angular MCP server in a specific workspace or Angular app, add a
.vscodefolder with anmcp.jsonfile at the root of the workspace with the following content:json{ "servers": { "kendo-angular-mcp-server": { "type": "stdio", "command": "npx", "args": ["-y", "@progress/kendo-angular-mcp@latest"] // set any of the `env` parameters below only if you haven't set a license key globally on your machine // "env": { // "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE" // or // "TELERIK_LICENSE": "YOUR_LICENSE_KEY" // } } } }The server name
kendo-angular-mcp-servercan be changed to a custom value based on your preferences.Global Configuration
To add the Kendo UI for Angular MCP server globally for VS Code, run the MCP: Open User Configuration command from the Command Palette and add the above content to the automatically created
mcp.jsonfile in your user profile.Alternatively, manually create an
mcp.jsonfile with the above content in your user folder.For more information about using MCP servers in Cursor, refer to Model Context Protocol.
Workspace Configuration
To enable the Kendo UI for Angular MCP server in a specific workspace or Angular app, add a
.cursorfolder with anmcp.jsonfile at the root of the workspace with the following content:json{ "mcpServers": { "kendo-angular-mcp-server": { "type": "stdio", "command": "npx", "args": ["-y", "@progress/kendo-angular-mcp@latest"] //// set any of the `env` parameters below only if you haven't set a license key globally on your machine // "env": { // "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE" //// or // "TELERIK_LICENSE": "YOUR_LICENSE_KEY" // } } } }The server name
kendo-angular-mcp-servercan be changed to a custom value based on your preferences.Global Configuration
To add the MCP server globally for Cursor, add a
.cursorfolder with the abovemcp.jsonfile in your user folder. -
Open the AI chat interface of your IDE and start your prompt with the
#kendo_ui_generatorhandle to invoke the Agentic UI Generator orchestrator:prompt#kendo_ui_generator Create a dashboard page with a grid showing sales data and a chart visualizing monthly trends.
Use Cases
The Agentic UI Generator is designed to help with various development scenarios:
- Generate specific Kendo UI for Angular components with particular configurations and features like filtering, validation, and data binding.
- Create full responsive pages
- Build complete dashboards, landing pages, and listing pages in existing applications.
- Generate pages similar to the Progress Design System page templates.
- Modify existing pages
- Enhance existing dashboards by adding new sections.
- Insert new sections that match existing layout style and responsiveness.
- Create and modify themes
- Implement Responsive Layout
- Create new responsive pages and sections.
- Convert existing pages to be responsive for mobile and tablet views.
For a comprehensive collection of sample prompts covering general UI tasks, layout organization, component implementation, styling, accessibility, and icon selection, see the Agentic UI Generator Prompt Library.
While the Agentic UI Generator performs great with powerful models like Claude Sonnet 4.6, GPT-5.2, or Gemini 3 Pro, it also excels with smaller models as well (such as Haiku and GPT 5.1 mini).