🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@igniteui/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@igniteui/mcp-server

Unified MCP server for Ignite UI — documentation, GitHub API, and CLI scaffolding

latest
Source
npmnpm
Version
15.5.0
Version published
Weekly downloads
263
-36.47%
Maintainers
1
Weekly downloads
 
Created
Source

@igniteui/mcp-server

MCP server for Ignite UI — provides AI assistants with component documentation search and retrieval for Angular, React, Blazor, and Web Components.

Ships with a bundled SQLite database containing pre-compressed, LLM-optimized documentation for all Ignite UI components.

Installation

npm install -g @igniteui/mcp-server

Or use directly with npx:

npx @igniteui/mcp-server

Running From Source

In order to run the MCP from this repository, git submodules must be initialized first. The repo already includes the submodule entries, but a fresh clone still needs to fetch them locally.

The blazor/api-docs submodule is required for local API markdown generation for all four platforms (Angular, React, Web Components, and Blazor).

Recommended first-time setup:

cd packages/igniteui-mcp/igniteui-doc-mcp
git submodule update --init blazor/api-docs
npm install
npm run build:docs:all
npm run build

npm run build:docs:all generates the local API markdown artifacts used by the MCP API tools for all four platforms (Angular, React, Web Components, and Blazor). Run it before starting the server.

If you need to refresh submodules to newer upstream commits later, use:

git submodule update --remote --merge

MCP Client Configuration

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "igniteui-cli": {
      "command": "npx",
      "args": ["-y", "igniteui-cli", "mcp"]
    }
  }
}

Claude Desktop

If Ignite UI CLI is globally installed you can configure the MCP like this:

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "igniteui-cli": {
      "command": "npx",
      "args": ["-y", "igniteui-cli", "mcp"]
    }
  }
}

Cursor

If Ignite UI CLI is globally installed you can configure the MCP like this:

Add to Cursor MCP settings:

{
  "mcpServers": {
    "igniteui-cli": {
      "command": "npx",
      "args": ["-y", "igniteui-cli", "mcp"]
    }
  }
}

Available Tools

All tools require a framework parameter: angular, react, blazor, or webcomponents.

ToolDescription
list_componentsList available Ignite UI component docs. Filter by framework and optional keyword match against filename, component name, keywords, or summary.
get_docReturn the full markdown content of a specific component doc by name (e.g., grid-editing, accordion).
search_docsFull-text search across Ignite UI docs for a specific framework. Returns top 20 results with excerpt snippets. Supports prefix matching (e.g., grid*).
search_apiSearch Ignite UI API entries by keyword, feature name, or partial component name.
get_api_referenceReturn the full API reference for a specific Ignite UI component or class by exact name.
get_project_setup_guideReturns setup guides for creating a new Ignite UI project. For Angular/React/Web Components: CLI scaffolding instructions. For Blazor: dotnet new + NuGet setup guide.

Available Prompts

PromptDescription
igniteui-usage-guideInstructions for using Ignite UI tools — framework detection, documentation lookup, and project setup.

Framework Detection

The server detects the Ignite UI framework from component prefixes in your code:

FrameworkPrefixExamplePackage
AngularIgxIgxGrid, IgxComboigniteui-angular
ReactIgrIgrGrid, IgrComboigniteui-react
BlazorIgbIgbGrid, IgbComboIgniteUI.Blazor
Web ComponentsIgc + ComponentIgcGridComponentigniteui-webcomponents

File extensions also help: .razor → Blazor, .tsx → React, .ts + .html → Angular or Web Components.

CLI Options

# Local mode (default) — uses bundled SQLite database
igniteui-mcp

# Remote mode — proxies to a backend API
igniteui-mcp --remote https://your-backend-url.com

# Enable debug logging
igniteui-mcp --debug

Environment Variables

VariableDescription
DB_PATHCustom path to the SQLite database file
IGNITEUI_MCP_DOCS_BACKEND_URLBackend URL (used with --remote flag when no URL argument is provided)

Modes

Local (default)

Fully self-contained — no network access required. Uses a bundled SQLite database with FTS4 full-text search powered by sql.js (WebAssembly).

When running from a source checkout, make sure you have already run npm run build:docs:all before starting the MCP so the local API markdowns are present.

Remote

Proxies documentation requests to a backend API. Requires the --remote flag with a URL argument:

igniteui-mcp --remote https://your-backend-url.com

Or provide the URL via environment variable:

IGNITEUI_MCP_DOCS_BACKEND_URL=https://your-backend-url.com igniteui-mcp --remote

License

MIT © Infragistics

FAQs

Package last updated on 15 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts