-
Notifications
You must be signed in to change notification settings - Fork 160
feat(skills): updating all skills with igniteui-cli mcp refs #17235
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
385e6bf
feat(skills): updating all skills with igniteui-cli mcp refs
kdinev 37001f6
Update skills/igniteui-angular-components/references/layout.md
kdinev ce69b3f
Update skills/igniteui-angular-components/references/form-controls.md
kdinev 0a40f1f
Update skills/igniteui-angular-components/references/directives.md
kdinev 354db2d
Update skills/igniteui-angular-components/SKILL.md
kdinev 2aca894
Update skills/igniteui-angular-components/SKILL.md
kdinev edb1a91
Update skills/igniteui-angular-components/references/mcp-setup.md
kdinev 7504096
Update skills/igniteui-angular-components/references/layout-manager.md
kdinev f1b7bbd
Update skills/igniteui-angular-components/references/feedback.md
kdinev 1156cdc
Update skills/igniteui-angular-components/references/data-display.md
kdinev 41632c6
Update skills/igniteui-angular-components/references/charts.md
kdinev d2f5ae8
fix(skills): addressing review comment on duplicate prerequisites in …
kdinev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
skills/igniteui-angular-components/references/mcp-setup.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| # Setting Up the Ignite UI CLI MCP Server | ||
|
|
||
| > **Part of the [`igniteui-angular-components`](../SKILL.md) skill hub.** | ||
|
|
||
| ## Contents | ||
|
|
||
| - [VS Code](#vs-code) | ||
| - [Cursor](#cursor) | ||
| - [Claude Desktop](#claude-desktop) | ||
| - [WebStorm / JetBrains IDEs](#webstorm--jetbrains-ides) | ||
| - [Verifying the Setup](#verifying-the-setup) | ||
|
|
||
| The Ignite UI CLI MCP server enables AI assistants to discover Ignite UI components, access component documentation, and support related Ignite UI workflows. It must be configured in your editor before these tools become available. | ||
|
|
||
| ## VS Code | ||
|
|
||
| Create or edit `.vscode/mcp.json` in your project: | ||
|
|
||
| ```json | ||
| { | ||
| "servers": { | ||
| "igniteui-cli": { | ||
| "command": "npx", | ||
| "args": ["-y", "igniteui-cli@next", "mcp"] | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| This works whether `igniteui-cli` is installed locally in `node_modules` or needs to be pulled from the npm registry — `npx -y` handles both cases. | ||
|
|
||
| ## Cursor | ||
|
|
||
| Create or edit `.cursor/mcp.json`: | ||
|
|
||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "igniteui-cli": { | ||
| "command": "npx", | ||
| "args": ["-y", "igniteui-cli@next", "mcp"] | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ## Claude Desktop | ||
|
|
||
| Edit the Claude Desktop config file: | ||
| - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json` | ||
| - **Windows**: `%APPDATA%\Claude\claude_desktop_config.json` | ||
|
|
||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "igniteui-cli": { | ||
| "command": "npx", | ||
| "args": ["-y", "igniteui-cli@next", "mcp"] | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ## WebStorm / JetBrains IDEs | ||
|
|
||
| 1. Go to **Settings → Tools → AI Assistant → MCP Servers** | ||
| 2. Click **+ Add MCP Server** | ||
| 3. Set Command to `npx` and Arguments to `igniteui-cli@next mcp` | ||
| 4. Click OK and restart the AI Assistant | ||
|
|
||
| ## Verifying the Setup | ||
|
|
||
| After configuring the MCP server, ask your AI assistant: | ||
|
|
||
| > "List all available Ignite UI components" | ||
|
|
||
| If the MCP server is running, the `list_components` tool will return all available components for the detected framework. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is already a "## Prerequisites" section later in this file (project prerequisites). Having two sections with the same heading can be confusing; consider renaming this one (e.g., "Tooling prerequisites") or merging the MCP requirement into the existing prerequisites list.