Telerik UI for .NET MAUI MCP Server
The Telerik MAUI MCP (Model Context Protocol) server enhances your AI-powered development experience by providing specialized context about Telerik UI for .NET MAUI components.
This MCP server enables AI-powered IDEs and tools to generate more accurate, tailored code that leverages Telerik UI for .NET MAUI components and APIs. You can ask complex questions about Telerik components, request specific implementations, and generate comprehensive code solutions.
The Telerik MAUI MCP server works in Chat (Ask) and Agent modes.
Prerequisites
To use the Telerik MAUI MCP server, you need:
-
An MCP-compatible client that supports MCP tools (latest version recommended).
-
An active DevCraft or Telerik UI for MAUI license or a Telerik UI for MAUI trial.
-
A .NET MAUI application that includes Telerik UI for .NET MAUI.
Installation
Depending on your environment, you can install the Telerik MAUI MCP server in any of the following ways:
-
By using the
dnxscript (.NET 10 or later only) or thedotnetCLI (.NET 9):bashdnx Telerik.MAUI.MCP -
By using npm:
bashnpm i @progress/telerik-maui-mcp
Next, make sure the configuration in your mcp.json is correct, and then add your Telerik license.
Configuring mcp.json
Use the settings in the following table to configure the Telerik MAUI MCP server in the mcp.json file of your code editor. Select the correct value based on your development environment.
| Setting Name | .NET 10 Value | .NET 9 Value | Node.js Value |
|---|---|---|---|
| Package Name | "Telerik.MAUI.MCP" | "Telerik.MAUI.MCP" | "@progress/telerik-maui-mcp" |
| Type | "stdio" | "stdio" | "stdio" |
| Command | "dnx" | "dotnet" | "npx" |
| Arguments | "Telerik.MAUI.MCP", "--yes" | "tool", "run", "telerik-maui-assistant" | "-y" |
| Server Name | "telerik-maui-assistant" | "telerik-maui-assistant" | "telerik-maui-assistant" |
Configuring Your License
An active Telerik UI for .NET MAUI license is required to use the Telerik MAUI MCP server.
-
When installing the MCP server by using the .NET tooling (
dnxordotnet tool install), the license key file will be retrieved automatically if it is present in the default directory on your system (%AppData%\Telerik\telerik-license.txton Windows and~/.telerik/telerik-license.txton Linux.). No additional action is required. -
When using the .NET tooling, but your license key file is not in the default directory, use one of the options below.
-
When using Node.js, add your license key file as an environment variable in your
mcp.jsonfile using one of the options below:-
As a license file path (recommended)
json"env": { "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE" } -
As a license key value
json"env": { "TELERIK_LICENSE": "YOUR_LICENSE_KEY_HERE" }
-
Using a license file path is recommended unless you're sharing settings across different systems. Remember to update your license key when necessary.
Visual Studio
- Early Visual Studio 17.14 versions require the Copilot Chat window to be open when a solution loads for the MCP server to work properly.
- For complete setup instructions, see Use MCP servers in Visual Studio.
-
Add an
.mcp.jsonfile to either of the following locations:- For a workspace-specific setup, add the file to the solution's folder.
- For a global setup, add the file to your user directory,
%USERPROFILE%(for example,C:\Users\YourName\.mcp.json).
json{ "servers": { "telerik-maui-assistant": { "type": "stdio", "command": "dnx", "args": ["Telerik.MAUI.MCP", "--yes"], } } } -
Restart Visual Studio.
-
Enable the Telerik MAUI MCP server in the Copilot Chat window's tool selection dropdown.
Visual Studio Code
- Visual Studio Code 1.102.1 or later is required to use the Telerik MAUI MCP Server.
- For complete setup instructions, see Use MCP servers in Visual Studio Code.
The basic setup in Visual Studio Code involves the following steps:
-
Enable
chat.mcp.enabledin the Visual Studio Code settings. -
Create a
.vscode/mcp.jsonfile in your workspace root (or user folder for global setup):json{ "servers": { "telerik-maui-assistant": { "type": "stdio", "command": "dnx", "args": ["Telerik.MAUI.MCP", "--yes"], } } } -
For global discovery, enable
chat.mcp.discovery.enabledinsettings.json:json{ "chat.mcp.discovery.enabled": true } -
Restart Visual Studio Code.
Cursor
For complete setup instructions, see Model Context Protocol.
Create a .cursor/mcp.json file in your workspace root (or user folder for global setup):
{
"mcpServers": {
"telerik-maui-assistant": {
"type": "stdio",
"command": "dnx",
"args": ["Telerik.MAUI.MCP", "--yes"],
}
}
}Usage
By default, MCP clients do not call MCP tools in a deterministic way. Some MCP clients like VS Code allow you to explicitly reference the desired MCP tool in your prompt.
To use the Telerik MAUI MCP server:
-
Start your prompt with one of these triggers:
#telerik#telerikmaui#telerik-maui-assistant
-
Verify server activation by looking for these messages:
- Visual Studio:
Running telerik-maui-assistant - Visual Studio Code:
Running telerik-maui-assistant - Cursor:
Calling MCP tool telerik-maui-assistant
- Visual Studio:
-
Grant permissions when prompted (per session, workspace, or always).
-
Start a fresh session for unrelated prompts to avoid context pollution.
-
Use in Chat (Ask) and Agent modes.
Improving Server Usage
To increase the likelihood of the Telerik MAUI MCP server being used, add custom instructions to your AI tool:
Sample Prompts
The following examples demonstrate useful prompts for the Telerik MAUI MCP server:
- "
#telerik-maui-assistant Create new maui project with Telerik. Add sample usage of the DataGrid component." - "
#telerik-maui-assistant Create a DataGrid with 3 columns - Name, Country, City. Add the corresponding business object in the code behind and populate it with sample data. Add 20 entries to the data." - "
#telerik-maui-assistant Add CollectionView. Enable drag and drop operation in the control."
Number of Requests
A Telerik Subscription license is recommended in order to use the Telerik MAUI AI Coding Assistant without restrictions. Perpetual license holders and trial users can make a limited number of requests per year.
Local AI Model Integration
You can use the Telerik MAUI MCP server with local large language models (LLMs):
- Run a local model, for example, Ollama.
- Use a bridge package like MCP-LLM Bridge.
- Connect your local model to the Telerik MAUI MCP server.
This setup allows you to use the Telerik AI Coding Assistant without cloud-based AI models.