Part of the
igniteui-blazor-componentsskill hub.
The Ignite UI CLI MCP server enables AI assistants to discover Ignite UI components, access Blazor documentation, and support related Ignite UI workflows. It must be configured in your editor before these tools become available.
Create or edit .vscode/mcp.json in your project:
{
"servers": {
"igniteui-cli": {
"command": "npx",
"args": ["-y", "igniteui-cli", "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.
Create or edit .cursor/mcp.json:
{
"mcpServers": {
"igniteui-cli": {
"command": "npx",
"args": ["-y", "igniteui-cli", "mcp"]
}
}
}Edit the Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"igniteui-cli": {
"command": "npx",
"args": ["-y", "igniteui-cli", "mcp"]
}
}
}- Go to Settings -> Tools -> AI Assistant -> MCP Servers
- Click + Add MCP Server
- Set Command to
npxand Arguments toigniteui-cli mcp - Click OK and restart the AI Assistant
After configuring the MCP server, ask your AI assistant:
"List all available Ignite UI for Blazor components"
If the MCP server is running, the list_components(framework: "blazor") tool will return available Blazor component documentation entries.