|
| 1 | +--- |
| 2 | +title: AI-Assisted Development with Ignite UI - Ignite UI for Angular |
| 3 | +_description: Ignite UI provides Agent Skills, the Ignite UI CLI MCP server, and the Theming MCP server to ground AI coding assistants in correct component APIs, import paths, and design tokens across Angular, React, and Web Components. |
| 4 | +_keywords: Angular, Ignite UI for Angular, Infragistics, MCP, Model Context Protocol, Ignite UI CLI MCP, Ignite UI Theming MCP, Agent Skills, AI, agent, Copilot, Cursor |
| 5 | +_language: en |
| 6 | +_license: MIT |
| 7 | +_canonicalLink: "{environment:dvUrl}/components/ai-assisted-development-overview" |
| 8 | +last_updated: "2026-04-21" |
| 9 | +namespace: Infragistics.Controls |
| 10 | +mentionedTypes: [] |
| 11 | +--- |
| 12 | + |
| 13 | +<!-- schema: Article, HowTo --> |
| 14 | + |
| 15 | +# AI-Assisted Development with Ignite UI |
| 16 | + |
| 17 | +Ignite UI for Angular, React, and Web Components provides a three-part AI toolchain - Agent Skills, the Ignite UI CLI MCP server, and the Ignite UI Theming MCP server - that grounds AI coding assistants in correct component APIs, import paths, and design tokens. Agent Skills are developer-owned instruction packages that define how AI agents use Ignite UI in a specific project. The CLI MCP server exposes Ignite UI CLI scaffolding, component management, and documentation tools to the active AI agent session via the Model Context Protocol. The Theming MCP server exposes the Ignite UI Theming Engine as queryable agent context. All three components work with GitHub Copilot, Cursor, Claude Desktop, Claude Code, and JetBrains AI Assistant. |
| 18 | + |
| 19 | +The AI toolchain does not currently support Blazor in the CLI MCP and Agent Skills layers - Blazor coverage is provided by the Theming MCP only. The CLI MCP server requires STDIO transport; HTTP-based MCP clients are not supported. Agent Skills and the CLI MCP server do not modify project files autonomously - they expose tools and instructions to the active AI agent, which acts on developer prompts. |
| 20 | + |
| 21 | +## The AI Toolchain at a Glance |
| 22 | + |
| 23 | +Ignite UI's AI toolchain consists of three independently usable layers. Each layer can be enabled on its own; they are designed to work together. |
| 24 | + |
| 25 | +| Layer | What it provides | Owner | Frameworks | |
| 26 | +| --------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ------------ | -------------------------------------- | |
| 27 | +| Agent Skills | Developer-owned instruction packages: import paths, component patterns, decision flows, project conventions | Developer | Angular, React, Web Components, Blazor | |
| 28 | +| CLI MCP server (`igniteui-cli`) | Project scaffolding, component management, documentation and API queries via MCP | Infragistics | Angular, React, Web Components | |
| 29 | +| Theming MCP server (`igniteui-theming`) | Design tokens, palette definitions, CSS custom property generation, WCAG AA contrast validation | Infragistics | Angular, React, Web Components, Blazor | |
| 30 | + |
| 31 | +The CLI MCP server and Theming MCP server are both started through `npx` and connect to any MCP-compatible client through STDIO transport. Agent Skills are local files placed in your project that the AI client reads from disk. |
| 32 | + |
| 33 | +## Agent Skills |
| 34 | + |
| 35 | +Agent Skills are structured, developer-owned packages that tell AI coding assistants exactly how to use Ignite UI for a specific framework. A Skill package can contain a `SKILL.md` instruction file with component patterns, import paths, and decision flows; references to authoritative Ignite UI documentation; and assets such as schema files or diagrams. When a Skill is active in the AI client, the agent follows the Skill instead of relying on general training data - which may reference outdated API signatures or import paths. |
| 36 | + |
| 37 | +Ignite UI ships dedicated Skill packages for Angular, React, Web Components, and Blazor. The Skill package is developer-owned: edit the `SKILL.md` to match your team's conventions, add project-specific patterns, reference your internal design system, and version the package alongside your codebase. |
| 38 | + |
| 39 | +For full setup instructions and IDE wiring, see [Agent Skills](skills.md). |
| 40 | + |
| 41 | +## CLI MCP Server |
| 42 | + |
| 43 | +The Ignite UI CLI MCP server (`igniteui-cli`) is an MCP server maintained by Infragistics that exposes Ignite UI CLI scaffolding and documentation tools to the active AI agent session. Once connected, the AI assistant can create Angular, React, or Web Components projects, add and modify Ignite UI components, and answer documentation and API questions - all through natural-language prompts in the chat session. |
| 44 | + |
| 45 | +The CLI MCP server starts via `npx` without a global install: |
| 46 | + |
| 47 | +```bash |
| 48 | +npx -y igniteui-cli mcp |
| 49 | +``` |
| 50 | + |
| 51 | +The server connects to VS Code with GitHub Copilot, Cursor, Claude Desktop, Claude Code, JetBrains AI Assistant, and any other MCP-compatible client that supports STDIO transport. The exact configuration format differs by client - see the CLI MCP setup guides below. |
| 52 | + |
| 53 | +The CLI MCP server does not support Blazor. It does not generate code autonomously - it exposes tools to the AI agent, which invokes them in response to developer prompts. |
| 54 | + |
| 55 | +## Theming MCP Server |
| 56 | + |
| 57 | +The Ignite UI Theming MCP server (`igniteui-theming`) is a separate MCP server that exposes the Ignite UI Theming Engine as queryable agent context. It covers design token access, palette definitions, CSS custom property generation, and WCAG AA contrast validation. It is architecturally separate from the CLI MCP server - it can be connected independently to give the AI agent access to theming tools without exposing project scaffolding tools. |
| 58 | + |
| 59 | +The Theming MCP server starts via `npx`: |
| 60 | + |
| 61 | +```bash |
| 62 | +npx -y igniteui-theming igniteui-theming-mcp |
| 63 | +``` |
| 64 | + |
| 65 | +The Theming MCP server supports Angular, React, Web Components, and Blazor. It updates with every Ignite UI release so agents always work against the current token surface. |
| 66 | + |
| 67 | +For configuration details, see [Theming MCP](theming-mcp.md). |
| 68 | + |
| 69 | +## Supported AI Clients |
| 70 | + |
| 71 | +The CLI MCP server and Theming MCP server work with any editor or AI client that supports MCP with STDIO transport. |
| 72 | + |
| 73 | +| Client | Configuration method | |
| 74 | +| --------------------------- | ----------------------------------------------------------------- | |
| 75 | +| VS Code with GitHub Copilot | `.vscode/mcp.json` | |
| 76 | +| Cursor | `.cursor/mcp.json` | |
| 77 | +| Claude Desktop (macOS) | `~/Library/Application Support/Claude/claude_desktop_config.json` | |
| 78 | +| Claude Desktop (Windows) | `%APPDATA%\Claude\claude_desktop_config.json` | |
| 79 | +| Claude Code | `.mcp.json` or the Claude Code MCP CLI command | |
| 80 | +| JetBrains AI Assistant | **Tools → AI Assistant → Model Context Protocol (MCP)*- | |
| 81 | + |
| 82 | +Agent Skills are compatible with GitHub Copilot via `.github/copilot-instructions.md`, Cursor via `.cursorrules` or `.cursor/rules/`, Windsurf via `.windsurfrules`, and JetBrains AI Assistant via project-level prompt settings. |
| 83 | + |
| 84 | +## Set Up the AI Toolchain |
| 85 | + |
| 86 | +Use `ig ai-config` to configure Agent Skills and both MCP servers in a single command. For individual control over each layer, or to configure only part of the toolchain in an existing project, follow the steps below. Running `ig ai-config` completes Steps 1, 2, and 3 in one operation. |
| 87 | + |
| 88 | +### Quick Setup |
| 89 | + |
| 90 | +The `ai-config` command copies the Ignite UI Agent Skills into `.claude/skills/` and writes the Ignite UI MCP server configuration to `.vscode/mcp.json`. If the files already exist and are up-to-date, the command is a no-op. |
| 91 | + |
| 92 | +**Using Angular Schematics:** |
| 93 | + |
| 94 | +```bash |
| 95 | +ng generate @igniteui/angular-schematics:ai-config |
| 96 | +``` |
| 97 | + |
| 98 | +This also registers the `@angular/cli` MCP server in `.vscode/mcp.json` alongside the Ignite UI servers. |
| 99 | + |
| 100 | +**Using the Ignite UI CLI:** |
| 101 | + |
| 102 | +```bash |
| 103 | +npx igniteui-cli ai-config |
| 104 | +``` |
| 105 | + |
| 106 | +If you have the Ignite UI CLI installed globally, use the shorter form: |
| 107 | + |
| 108 | +```bash |
| 109 | +ig ai-config |
| 110 | +``` |
| 111 | + |
| 112 | +> [!NOTE] |
| 113 | +> The `npx igniteui-cli` and `ig` forms do not register the `@angular/cli` MCP server. Use the Angular Schematics command above if you want all three servers configured in a single step. |
| 114 | +
|
| 115 | +> [!NOTE] |
| 116 | +> The command requires Ignite UI packages to be installed in your project (`npm install`). If no skill files are found, make sure your packages are up-to-date. |
| 117 | +
|
| 118 | +### Step 1 - Load Agent Skills |
| 119 | + |
| 120 | +Copy the Ignite UI Skill package for your framework into your project's agent discovery path. The Skill package ships with the library in `node_modules/igniteui-{framework}/skills/`. Wire it to your IDE using the persistent setup for your client. |
| 121 | + |
| 122 | +See [Agent Skills](skills.md) for the complete setup. |
| 123 | + |
| 124 | +### Step 2 - Connect the CLI MCP Server |
| 125 | + |
| 126 | +Add the `igniteui-cli` MCP server entry to the configuration file for your AI client. Use the JSON structure that matches your client: |
| 127 | + |
| 128 | +**VS Code (`.vscode/mcp.json`):** |
| 129 | + |
| 130 | +```json |
| 131 | +{ |
| 132 | + "servers": { |
| 133 | + "igniteui-cli": { |
| 134 | + "command": "npx", |
| 135 | + "args": ["-y", "igniteui-cli", "mcp"] |
| 136 | + } |
| 137 | + } |
| 138 | +} |
| 139 | +``` |
| 140 | + |
| 141 | +**Cursor, Claude Desktop, Claude Code, JetBrains, and other MCP clients:** |
| 142 | + |
| 143 | +```json |
| 144 | +{ |
| 145 | + "mcpServers": { |
| 146 | + "igniteui-cli": { |
| 147 | + "command": "npx", |
| 148 | + "args": ["-y", "igniteui-cli", "mcp"] |
| 149 | + } |
| 150 | + } |
| 151 | +} |
| 152 | +``` |
| 153 | + |
| 154 | +For the full setup guide, including VS Code, GitHub, Cursor, Claude Desktop, Claude Code, JetBrains, and other MCP-compatible clients, see [CLI MCP](cli-mcp.md). |
| 155 | + |
| 156 | +### Step 3 - Connect the Theming MCP Server (optional) |
| 157 | + |
| 158 | +Add the `igniteui-theming` entry to the same MCP configuration file, alongside `igniteui-cli`: |
| 159 | + |
| 160 | +```json |
| 161 | +{ |
| 162 | + "servers": { |
| 163 | + "igniteui-theming": { |
| 164 | + "command": "npx", |
| 165 | + "args": ["-y", "igniteui-theming", "igniteui-theming-mcp"] |
| 166 | + } |
| 167 | + } |
| 168 | +} |
| 169 | +``` |
| 170 | + |
| 171 | +For configuration details and theming workflows, see [Theming MCP](theming-mcp.md). |
| 172 | + |
| 173 | +## Additional Resources |
| 174 | + |
| 175 | +- [Agent Skills](./skills.md) |
| 176 | +- [Ignite UI CLI MCP](./cli-mcp.md) |
| 177 | +- [Ignite UI Theming MCP](./theming-mcp.md) |
| 178 | + |
| 179 | +<div class="divider--half"></div> |
| 180 | + |
| 181 | +Our community is active and always welcoming to new ideas. |
| 182 | + |
| 183 | +- [Ignite UI for Angular **Forums**](https://www.infragistics.com/community/forums/f/ignite-ui-for-angular) |
| 184 | +- [Ignite UI for Angular **GitHub**](https://github.com/IgniteUI/igniteui-angular) |
0 commit comments