Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@progress/telerik-blazor-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Important: This project is a work in progress and is not yet ready for production use.
Important: Use the dev tag for the latest stable version.
Telerik Blazor MCP Server
Prerequisutes:
- Node.js >= 18.x
Usage
The usage of the Telerik Blazor MCP server is to provide additional context when using Telerik Blazor components. It is designed to be used with various editors and IDEs that support the AI coding agents that support MCP servers or any AI-powered MCP Client (e.g., VSCode, Cursor, Windsurf, Claude Code, Claude Desktop etc.).
Install
No need to explicitly install the server. It is automatically installed when you set it up and run the MCP client.
Authorization
The MCP server requires a valid Telerik account with a valid license. In order to get a valid license key check the Telerik Blazor documentation.
To set up the license key, you need to set it up as an environment variable in the JSON configuration file.
Configuration Examples
VSCode - Copilot
Add the following to your MCP json settings (typically in .vscode/mcp.json
):
{
"servers": {
"telerik-blazor-assistant": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@progress/telerik-blazor-mcp@dev"],
"env": {
"TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE",
// or
"TELERIK_LICENSE_KEY": "YOUR_LICENSE_KEY"
}
}
}
}
Cursor
Add the following to your MCP json settings (typically in .cursor/mcp.json
):
{
"mcpServers": {
"telerik-blazor-assistant": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@progress/telerik-blazor-mcp@dev"],
"env": {
"TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE",
// or
"TELERIK_LICENSE": "YOUR_LICENSE_KEY"
},
}
}
}