From 1eb778cc6cb7ed0db64a5582a4b61d9fbb03fbb6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:42:45 +0000 Subject: [PATCH 1/2] Initial plan From 5a7836d753410ef98eb48a35b276c4aed4544de0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:45:02 +0000 Subject: [PATCH 2/2] Change code snippets to use four backticks Co-authored-by: petar-i-todorov <109748926+petar-i-todorov@users.noreply.github.com> --- ai-coding-assistant/mcp-server-as-a-nuget.md | 28 ++++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ai-coding-assistant/mcp-server-as-a-nuget.md b/ai-coding-assistant/mcp-server-as-a-nuget.md index 0a3383dba..51f1d0cbc 100644 --- a/ai-coding-assistant/mcp-server-as-a-nuget.md +++ b/ai-coding-assistant/mcp-server-as-a-nuget.md @@ -43,15 +43,15 @@ Additional requirements: Install the MCP server as a local tool in your solution root (or another chosen path): -```powershell +````powershell dotnet tool install -g Telerik.Reporting.MCP -``` +```` If updating: -```powershell +````powershell dotnet tool update -g Telerik.Reporting.MCP -``` +```` These commands install/update the Telerik Reporting MCP [dotnet tool](https://learn.microsoft.com/en-us/dotnet/core/tools/global-tools) globally. Global tools are installed in the following directories by default when you specify the **-g** or **--global** option: @@ -68,7 +68,7 @@ No manual install step is needed. The `dnx` command will download and execute th Add a `.mcp.json` file to your solution root (or to `%USERPROFILE%` for global usage): -```json +````json { "servers": { "telerik-reporting-assistant": { @@ -81,21 +81,21 @@ Add a `.mcp.json` file to your solution root (or to `%USERPROFILE%` for global u } } } -``` +```` If you prefer embedding the license string directly: -```json +````json "env": { "TELERIK_LICENSE": "YOUR_LICENSE_KEY" } -``` +```` ### .NET 10 Configuration (`.mcp.json`) Use these settings when configuring the server in your MCP client: -```json +````json { "servers": { "telerik-reporting-assistant": { @@ -111,7 +111,7 @@ Use these settings when configuring the server in your MCP client: } } } -``` +```` You may substitute `TELERIK_LICENSE` instead of `TELERIK_LICENSE_PATH` (*see [License Configuration](#license-configuration) section below for details and recommendations*). The `inputs` array is optional and not required for the current functionality. @@ -142,11 +142,11 @@ Add your [Telerik license key]({%slug license-key%}) using one of these options __Option 1: License File Path (Recommended)__ -```json +````json "env": { "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE" } -``` +```` The `THE_PATH_TO_YOUR_LICENSE_FILE` should point to the `telerik-license.txt` file, usually in the AppData folder. Often it will look like: @@ -154,11 +154,11 @@ The `THE_PATH_TO_YOUR_LICENSE_FILE` should point to the `telerik-license.txt` fi __Option 2: Direct License Key__ -```json +````json "env": { "TELERIK_LICENSE": "YOUR_LICENSE_KEY_HERE" } -``` +```` > Option 1 is recommended unless you're sharing settings across different systems. Remember to [update your license key]({%slug license-key%}#updating-your-license-key) when necessary.