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

kendo-angular-unofficial-mcp

v1.0.3

Published

An open-source MCP server to query the Kendo UI for Angular documentation.

Readme

Kendo UI for Angular - Unofficial MCP Server

A free, open-source Model Context Protocol (MCP) server that allows AI assistants (like Claude, Roo Code, and Cline) to browse, search, and extract code examples directly from the public Kendo UI for Angular documentation.

This project serves as a community-driven, accessible alternative to official premium MCPs, enabling developers to harness the power of LLMs with Kendo UI without requiring a subscription for the documentation integration.

Features

  • 🚀 Zero Configuration: Works via standard input/output (stdio), meaning no network ports or complex setups are required.

  • 🧠 Extremely Token-Optimized: Utilizes an advanced tree-grouping algorithm to compress component indexes (URLs and slugs). This reduces LLM context window consumption by up to 85% compared to standard JSON responses, keeping responses lightning-fast.

  • 🧹 Smart Scraping: Specifically tailored to parse Telerik's Gatsby-based documentation site. It strips cookie banners, sidebars, scripts, and TOCs, feeding only the relevant Markdown (APIs and code blocks) to the LLM.

  • In-Memory Caching: Prevents rate-limiting and speeds up AI responses by caching fetched documentation for 24 hours.

  • 🛡️ Type-Safe: Built with the latest high-level @modelcontextprotocol/sdk and zod for strict parameter validation.

Available Tools

This server exposes four highly specialized tools to the AI:

  1. list_kendo_components: Scrapes the main hub to get a list of all available Kendo Angular components (e.g., Grid, Buttons, Dropdowns).

  2. list_component_topics: Given a component ID, retrieves its documentation index/topics (e.g., Data Binding, Filtering, Editing). It explicitly filters out deep API references to keep the context clean.

  3. list_component_api: A dedicated tool to retrieve deep API references for a component. Useful when the LLM needs to know the exact @Input(), @Output(), classes, directives, or interfaces of a specific module.

  4. read_kendo_doc: Reads a specific documentation article, converting the HTML payload into clean, LLM-readable Markdown.

Usage with Claude Desktop

You don't need to clone the repository if you just want to use it. You can run it directly via npx (requires Node.js installed on your machine).

Add the following configuration to your Claude Desktop config file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "kendo-angular-unofficial": {
      "command": "npx",
      "args": [
        "-y",
        "kendo-angular-unofficial-mcp"
      ]
    }
  }
}

Note: Restart Claude Desktop after updating the configuration.

Usage with VS Code (Cline / Roo Code)

If you are using VS Code with an MCP-compatible AI extension like Cline or Roo Code, you can easily add this server:

  1. Open the Command Palette (Ctrl + Shift + P or Cmd + Shift + P).

  2. Search for Cline: MCP Servers (or your extension's equivalent) to open the cline_mcp_settings.json file.

  3. Add the following configuration:

{
  "mcpServers": {
    "kendo-angular-unofficial": {
      "command": "npx",
      "args": [
        "-y",
        "kendo-angular-unofficial-mcp"
      ]
    }
  }
}

Local Development & Installation

If you want to contribute, modify the scraping logic, or run it locally from source:

  1. Clone the repository:

    git clone [https://github.com/yourusername/kendo-angular-unofficial-mcp.git](https://github.com/yourusername/kendo-angular-unofficial-mcp.git)
    cd kendo-angular-unofficial-mcp
        
  2. Install dependencies:

    npm install
        
  3. Build the TypeScript code:

    npm run build
        
  4. Connect your local build to your AI Client: Edit your MCP settings file (Claude Desktop or VS Code) to point to your local Node instance. Note: If you are on Windows, remember to escape your backslashes (e.g., C:\\path\\to\\dist\\index.js).

    {
      "mcpServers": {
        "kendo-angular-local": {
          "command": "node",
          "args": [
            "/absolute/path/to/kendo-angular-unofficial-mcp/dist/index.js"
          ]
        }
      }
    }
        

Prompt Examples

Once connected, you can ask your AI assistant things like:

  • "Can you check the Kendo UI documentation and tell me what components are available?"

  • "Read the Kendo Angular Grid excel export documentation and write a component that implements a custom fetchData callback."

  • "Use the Kendo API tool to check what @Input properties are available for the <kendo-grid-column> component."

Disclaimer

This is an unofficial, community-driven project. It is not affiliated with, endorsed by, or sponsored by Progress Software Corporation. Kendo UI and Telerik are trademarks of Progress Software Corporation. This tool solely extracts publicly available information from the web for educational and developmental purposes.