npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@progress/kendo-react-mcp

v1.6.0

Published

Model Context Protocol for KendoReact

Downloads

1,545

Readme

KendoReact MCP Server

The KendoReact MCP Server enables you to achieve integration with your already existing AI workflows and reach new levels of developer productivity. The MCP server provides proprietary context to AI-powered IDEs, apps and tools. You can use the KendoReact MCP Server to ask about KendoReact components, features, or general usage. You can successfully prompt more complex questions and tasks, and generate tailored code that includes KendoReact components and API.

As of version 1.4 the KendoReact MCP server The MCP server automatically recognizes your Telerik license and activates the Agentic UI Generator and the available assistants:

  • Agentic UI Generator—Includes all five specialized assistants (Component, Layout, Styling, Icon and Accessibility), coordinated by a comprehensive orchestrator designed for complete UI generation.

Agentic UI Generator Intended Use

  • Create Individual Components: Build specific KendoReact components with particular configurations and features like filtering, validation, and data binding.
  • Create Full Responsive Pages
  • Modify Existing Pages: Generate new themes inside existing applications. Add dark mode or high-contrast themes.
  • Implement Responsive Layout
    • Create new responsive pages and sections.
    • Convert existing pages to be responsive for mobile and tablet views.

Prerequisites

To use the KendoReact MCP Server, you need:

Installation

Use the documentation of your AI-powered MCP client to add the KendoReact MCP server to a specific workspace or globally. You can see installation tips and examples for some popular MCP clients below.

The generic settings of the KendoReact MCP Server are:

  • Server name: kendo-mcp
  • Type: stdio (standard input/output transport)
  • Command: npx (the MCP server works through an npm package)
  • Supported arguments: -y
  • npm package name: @progress/kendo-react-mcp
  • You also need to add your Telerik licence key as an env parameter in the mcp.json file. There are two options:
    • (recommended) Use a TELERIK_LICENSE_PATH argument and point to your Telerik license file location.
    • Use a TELERIK_LICENSE argument and paste your Telerik license key. Make sure to update the license key when necessary.

You can ignore the env parameter if you have the Telerik license key set up as a global environment variable on your machine. And if the MCP client supports passing global environment variables to MCP servers.

Authentication

The KendoReact MCP server requires an active Subscription or trial license and a valid key for authentication. You can configure your license key either globally on your machine or locally in the mcp.json configuration file.

  • (Recommended) When set globally, the MCP server automatically recognizes the license and you can ignore the env parameter in the mcp.json setup.
  • When configured locally, you have to define either one of the following variables inside the mcp.json file:
    • TELERIK_LICENSE_PATH—to point to your license file location.
    • TELERIK_LICENSE—to paste your license key directly.

For detailed instructions on obtaining and managing your license key, see KendoReact Licensing.

Configuration Examples

VSCode - Copilot

Refer to Use MCP servers in VS Code.

To enable the Kendo React MCP server in a specific workspace or React app, add a .vscode folder with an mcp.json file at the root of the workspace:

.vscode/mcp.json at the workspace root

{
  "servers": {
    "kendo-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@progress/kendo-react-mcp@latest"],
      "env": {
        "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE",
        // or
        "TELERIK_LICENSE": "YOUR_LICENSE_KEY"
      }
    }
  }
}

You can ignore the env parameter if you have the Telerik license key set up as a global environment variable on your machine. And if the MCP client supports passing global environment variables to MCP servers.

Cursor

Refer to Model Context Protocol.

To enable the KendoReact MCP server in a specific workspace or React app, add a .cursor folder with an mcp.json file at the root of the workspace.

.cursor/mcp.json at the workspace root

{
  "mcpServers": {
    "kendo-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@progress/kendo-react-mcp@latest"],
      "env": {
        "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE",
        // or
        "TELERIK_LICENSE": "YOUR_LICENSE_KEY"
      },
    }
  }
}

You can ignore the env parameter if you have the Telerik license key set up as a global environment variable on your machine. And if the MCP client supports passing global environment variables to MCP servers.

Usage

To increase the probability of the KendoReact MCP Server being used, or to call it without the need to mention "kendo" explicitly, add custom idea instructions to your AI-powered tool. Here are examples for GitHub Copilot and Cursor.

Agentic UI Generator

To use the Agentic UI Generator mode:

  1. Open the AI chat interface in your IDE—Start a new chat session to begin interacting with the Agentic UI Generator.
  2. Start your prompt with #kendo_ui_generator (the main MCP tool to start the agentic workflow in the Agentic UI Generator).
  3. This will trigger an agentic workflow using the other available MCP tools to retrieve relevant context based on your prompt.
  4. Inspect the output and verify that the KendoReact MCP Server is used. Look for a statement in the output, which is similar to:
    • Running kendo-mcp-server (in VS Code)
    • Calling MCP tool kendo-mcp-server (in Cursor)
  5. If requested, grant the KendoReact MCP server a permission to run for this session, workspace, or always.

Also check more usefule documentation about how to use the Agentic UI Generator here:

AI Tools Usage

The KendoReact MCP server and its tools are offered as a single experience through the Agentic UI Generator (#kendo_ui_generator) in all active Telerik subscription models.