-
Notifications
You must be signed in to change notification settings - Fork 160
feat(skills): updating all skills with igniteui-cli mcp refs #17236
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
8411086
feat(skills): updating all skills with igniteui-cli mcp refs
kdinev a9fb5aa
Update skills/igniteui-angular-components/references/layout.md
kdinev bc81c93
Update skills/igniteui-angular-components/references/form-controls.md
kdinev f4c4c5c
Update skills/igniteui-angular-components/references/directives.md
kdinev fff1957
Update skills/igniteui-angular-components/SKILL.md
kdinev e27912a
Update skills/igniteui-angular-components/SKILL.md
kdinev 78c208d
Update skills/igniteui-angular-components/references/mcp-setup.md
kdinev 65b89af
Update skills/igniteui-angular-components/references/layout-manager.md
kdinev be3c9a3
Update skills/igniteui-angular-components/references/feedback.md
kdinev 3fc5c79
Update skills/igniteui-angular-components/references/data-display.md
kdinev 6c89fa0
Update skills/igniteui-angular-components/references/charts.md
kdinev 05a4216
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.
This new prerequisite section duplicates the existing "## Prerequisites" section later in the file, which makes the document structure confusing and breaks the pattern used in other skills. Consider renaming this new section to something like "## Tooling prerequisites" / "## MCP prerequisites" or merging it into the existing prerequisites block.