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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@progress/telerik-ajax-mcp

v1.2.3

Published

Model Context Protocol server for Telerik UI for ASP.NET AJAX

Readme

Telerik UI for ASP.NET AJAX MCP Server

The Telerik UI for ASP.NET AJAX MCP Server enables you to achieve integration with AI and reach new levels of developer productivity. The MCP server provides proprietary context to AI-powered IDEs, apps and tools. You can use the Telerik UI for ASP.NET AJAX MCP server to ask about Telerik AJAX controls, features, or general usage. You can successfully prompt more complex questions and tasks, and generate tailored code that includes Telerik UI for ASP.NET AJAX controls and API.

Prerequisites

To use the Telerik UI for ASP.NET AJAX MCP server, you need:

Installation

Use the documentation of your AI-powered MCP client to add the Telerik 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 Telerik UI for ASP.NET AJAX MCP server are:

  • Server name: telerikAjaxAssistant (depends on your preferences)
  • Type: stdio (standard input/output transport)
  • Command: npx (the MCP server works through an npm package)
  • Supported arguments: -y
  • npm package name: @progress/telerik-ajax-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.
  • Do not use hyphens (-) or underscores (_) in the MCP server name in the MCP .json file, due to potential compatibility issues with some MCP clients such as Visual Studio or Windsurf.
  • Some MCP clients expect the MCP servers to be listed under a servers JSON key, while others expect mcpServers.
  • Some MCP clients expect an mcp.json file, while others like Visual Studio 2022 expect an .mcp.json file.

Authentication

The MCP server requires a valid Telerik account with a valid license. In order to get a valid license key check the Telerik UI for ASP.NET AJAX documentation.

To set up the license key, you need to set it up as an environment variable in the JSON configuration file.

Configuration Examples

Visual Studio

Refer to Use MCP servers in Visual Studio.

To enable the Telerik MCP Server in a specific ASP.NET AJAX app, add a .mcp.json file to the solution folder.

SOLUTIONDIR/.mcp.json

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

VSCode - Copilot

Refer to Use MCP servers in VS Code.

To enable the Telerik MCP Server in a specific workspace or ASP.NET AJAX app, add a .vscode folder with an mcp.json file at the root of the workspace:

.vscode/mcp.json at the workspace root

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

Cursor

Refer to Model Context Protocol.

To enable the Telerik MCP Server in a specific workspace or ASP.NET AJAX app, add a .cursor folder with an mcp.json file at the root of the workspace.

.cursor/mcp.json at the workspace root

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

Usage

By default, MCP clients do not call MCP tools in a deterministic way, unless you explicitly reference the MCP tool in your prompt. To use the Telerik MCP Server:

  1. Start your prompt with one of the following:
    • # and the MCP server name that you used in mcp.json (for example, #telerikAjaxAssistant)
    • # and the name of the Telerik AJAX MCP tool (#telerik_ajax_assistant)
  2. Confirm that the Telerik MCP server is used. Look for a statement in the output, which is similar to:
    • Running telerik_ajax_assistant (in VS Code)
    • Calling MCP tool telerik_ajax_assistant (in Cursor)
  3. Grant the Telerik tool permission to run for the current session, workspace, or always.

Also check the general AI Coding Assistant Recommendations for more usage tips.

To call the Telerik MCP server without the need to type #telerikAjaxAssistant explicitly, add custom instructions to your AI-powered tool. Here are examples for GitHub Copilot and Cursor.