Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI assistants to browse, search, and extract code examples from the public Kendo UI for Angular documentation, providing an accessible alternative to official premium MCPs.

README.md

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. Shared data files in demos are automatically truncated to type definitions + a single sample record, reducing token consumption by up to 91% compared to raw output.
  • 🔬 AST-Based Parsing: Reads documentation directly from Gatsby's page-data.json AST instead of scraping rendered HTML. This produces cleaner Markdown, eliminates CSS selector fragility, and reduces the fetch payload significantly. Falls back to HTML scraping with Cheerio if the AST is unavailable.
  • 💻 Live Demo Code Extraction: Automatically discovers demo examples embedded in documentation pages and exposes their source code. The AI can fetch real, runnable Angular code from any documented feature.
  • 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 five specialized tools to the AI:

  1. list_kendo_components — Lists all available Kendo Angular components (e.g., Grid, Buttons, Dropdowns).
  1. list_component_topics — Given a component ID, retrieves its documentation index/topics (e.g., Data Binding, Filtering, Editing). Filters out deep API references to keep context clean.
  1. list_component_api — Retrieves deep API references for a component: @Input(), @Output(), classes, directives, and interfaces.
  1. read_kendo_doc — Reads a specific documentation article and returns it as clean Markdown. Includes a list of available demo examples at the end that can be fetched with read_demo_source.
  1. read_demo_source — Fetches the source code files for a specific demo example. Returns the full component code and intelligently truncates large shared data files to their type definitions + one sample record.

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).
  1. Search for Cline: MCP Servers (or your extension's equivalent) to open the cline_mcp_settings.json file.
  1. 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/EremesNG/kendo-angular-unofficial-mcp.git
    cd kendo-angular-unofficial-mcp
    
  1. Install dependencies:
    npm install
    
  1. Build the TypeScript code:
    npm run build
    
  1. 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."_
  • _"Read the Grid filtering docs and fetch the demo source code so I can see a working example."_

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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.