Skip to content

Commit 50b4525

Browse files
committed
continued
1 parent bcce16a commit 50b4525

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

ai/mcp-server.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,37 +24,34 @@ To use the Telerik Blazor MCP server, you need:
2424

2525
## Installation
2626

27-
You can install the Telerik Blazor MCP server manually or use automated configuration commands provided by the Telerik extensions for [Visual Studio](slug:getting-started-vs-integration-ai-configuration) and [VS Code](slug:getting-started-vs-code-integration-ai-configuration).
27+
There are two ways to install the Telerik Blazor MCP server:
2828

29-
### Automated Installation
29+
* Use a manual approach, which is described below.
30+
* Use an automated process provided by the Telerik extensions for [Visual Studio](slug:getting-started-vs-integration-ai-configuration) and [VS Code](slug:getting-started-vs-code-integration-ai-configuration).
3031

31-
The easiest way to configure the Telerik Blazor MCP server is through the automated commands in the Telerik extensions:
32-
33-
* **Visual Studio**: Use the "Configure MCP Server for Solution" or "Configure MCP Server Globally" commands. For details, see [AI Configuration in Visual Studio](slug:getting-started-vs-integration-ai-configuration).
34-
* **VS Code**: Use the "Telerik UI for Blazor: Configure MCP Server" command. For details, see [AI Configuration in VS Code](slug:getting-started-vs-code-integration-ai-configuration).
35-
36-
### Manual Installation
37-
38-
For manual installation or when using other MCP clients, use the documentation of your AI-powered MCP client to add the Telerik MCP server to a specific workspace or globally. The sections below provide installation tips and examples for some popular MCP clients like [Visual Studio](#visual-studio), [VS Code](#vs-code), and [Cursor](#cursor). The generic settings of the Telerik Blazor MCP server are:
32+
To install the Telerik MCP server manually, use the documentation of your AI-powered MCP client. You can enable the MCP server for specific workspaces or globally. The sections below provide installation tips and examples for some popular MCP clients like [Visual Studio](#visual-studio), [VS Code](#vs-code), and [Cursor](#cursor). The generic settings of the Telerik Blazor MCP server are:
3933

4034
* npm package name: `@progress/telerik-blazor-mcp`
4135
* Type: `stdio` (standard input/output transport)
4236
* Command: `npx`
4337
* Arguments: `-y`
4438
* Server name: `telerikBlazorAssistant` (depends on your preferences)
39+
* Your [Telerik license key](#license-key) as an `env` parameter
4540

4641
> * Do not use hyphens (`-`) or underscores (`_`) in the MCP server name in the MCP `.json` file, due to potential compatibility issues with some MCP clients such as Visual Studio or Windsurf.
4742
> * Some MCP clients expect the MCP servers to be listed under a `servers` JSON key, while others expect `mcpServers`.
4843
> * Some MCP clients expect an `mcp.json` file, while others like Visual Studio 2022 expect an `.mcp.json` file.
4944
50-
You also need to add your [Telerik licence key](slug:installation-license-key) as an `env` parameter in the `mcp.json` file. There are two options:
45+
### License Key
46+
47+
To use the Telerik MCP Server, your configuration must provide your [Telerik licence key](slug:installation-license-key) as an `env` parameter in the MCP `.json` file. There are two options:
5148

5249
* Use a `TELERIK_LICENSE_PATH` argument and point to your Telerik license file location. This approach is recommended, unless you are sharing your VS Code settings across different computers with different operating systems or user names.
5350
* Use a `TELERIK_LICENSE` argument and paste your Telerik license key. Make sure to [update the license key](slug:installation-license-key#license-key-updates) when necessary.
5451

5552
### Visual Studio
5653

57-
For detailed instructions, refer to [Use MCP servers in Visual Studio](https://learn.microsoft.com/en-us/visualstudio/ide/mcp-servers).
54+
For detailed instructions, refer to [Use MCP servers in Visual Studio](https://learn.microsoft.com/en-us/visualstudio/ide/mcp-servers). You can also install the Telerik Blazor MCP server through the [Telerik UI for Blazor Visual Studio extension](slug:getting-started-vs-integration-ai-configuration).
5855

5956
> Early Visual Studio 17.14 versions require the Copilot Chat window to be open and active when you open a solution. Otherwise the Telerik MCP server is not used.
6057
@@ -83,7 +80,7 @@ To enable global automatic discovery of the Telerik MCP Server in Visual Studio,
8380
8481
### VS Code
8582

86-
For detailed instructions, refer to [Use MCP servers in VS Code](https://code.visualstudio.com/docs/copilot/chat/mcp-servers).
83+
For detailed instructions, refer to [Use MCP servers in VS Code](https://code.visualstudio.com/docs/copilot/chat/mcp-servers). You can also install the Telerik Blazor MCP server through the [Telerik UI for Blazor VS Code extension](slug:getting-started-vs-code-integration-ai-configuration).
8784

8885
> This section applies to VS Code 1.102.1 and newer versions.
8986

getting-started/vs-code-integration/ai-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To access the automated commands:
3131
The **Telerik UI for Blazor: Configure MCP Server** command provides two configuration scopes to set up the [Telerik Blazor MCP Server](slug:ai-mcp-server#vs-code):
3232

3333
* **Workspace**—Creates an `mcp.json` file in a `.vscode` folder in your current workspace. This configuration applies only to the current workspace.
34-
* **Global**—Creates an `mcp.json` file in your operating system user folder (for example, `C:\Users\_____\AppData\Roaming\Code\User\.mcp.json` on Windows or `/Users/_____/Library/Application Support/Code/User/mcp.json` on macOS). This configuration applies to all VS Code workspaces.
34+
* **Global**—Creates an `mcp.json` file in your operating system user folder (for example, `C:\Users\___\AppData\Roaming\Code\User\.mcp.json` on Windows or `/Users/___/Library/Application Support/Code/User/mcp.json` on macOS). This configuration applies to all VS Code workspaces.
3535

3636
> Make sure to open the generated `mcp.json` @[template](/_contentTemplates/common/ai-coding-assistant.md#verify-license-key)
3737

getting-started/vs-integration/ai-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To access the automated commands, open **Extensions** > **Telerik** > **Telerik
2424
The Telerik UI for Blazor extension provides two menu options to [set up the Telerik Blazor MCP server](slug:ai-mcp-server#visual-studio):
2525

2626
* **Configure MCP Server for Solution**—this command creates an `.mcp.json` file in the solution folder. The configuration applies only to the projects in that application.
27-
* **Configure MCP Server Globally**—this command creates an `.mcp.json` file in your operating system user folder (`%USERPROFILE%`, for example, `C:\Users\_____\.mcp.json`). This configuration applies to all Visual Studio solutions and projects.
27+
* **Configure MCP Server Globally**—this command creates an `.mcp.json` file in your operating system user folder (`%USERPROFILE%`, for example, `C:\Users\___\.mcp.json`). This configuration applies to all Visual Studio solutions and projects.
2828

2929
> Make sure to open the generated `.mcp.json` @[template](/_contentTemplates/common/ai-coding-assistant.md#verify-license-key)
3030

0 commit comments

Comments
 (0)