Kendo Angular Unofficial
An open-source MCP server to query the Kendo UI for Angular documentation.
Ask AI about Kendo Angular Unofficial
Powered by Claude Β· Grounded in docs
I know everything about Kendo Angular Unofficial. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
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.jsonAST 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/sdkandzodfor strict parameter validation.
Available Tools
This server exposes five specialized tools to the AI:
-
list_kendo_componentsβ Lists 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). Filters out deep API references to keep context clean. -
list_component_apiβ Retrieves deep API references for a component:@Input(),@Output(), classes, directives, and interfaces. -
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 withread_demo_source. -
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:
-
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/EremesNG/kendo-angular-unofficial-mcp.git cd kendo-angular-unofficial-mcp -
Install dependencies:
npm install -
Build the TypeScript code:
npm run build -
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.
