kendo-angular-unofficial-mcp
v1.0.3
Published
An open-source MCP server to query the Kendo UI for Angular documentation.
Maintainers
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/sdkandzodfor strict parameter validation.
Available Tools
This server exposes four highly specialized tools to the AI:
list_kendo_components: Scrapes the main hub to get a list of all available Kendo Angular components (e.g., Grid, Buttons, Dropdowns).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.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.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.jsonWindows:
%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:
Open the Command Palette (
Ctrl + Shift + PorCmd + Shift + P).Search for
Cline: MCP Servers(or your extension's equivalent) to open thecline_mcp_settings.jsonfile.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:
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-mcpInstall dependencies:
npm installBuild the TypeScript code:
npm run buildConnect 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.
