You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ai-coding-assistant/mcp-server-as-a-nuget.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,15 +43,15 @@ Additional requirements:
43
43
44
44
Install the MCP server as a local tool in your solution root (or another chosen path):
45
45
46
-
```powershell
46
+
````powershell
47
47
dotnet tool install -g Telerik.Reporting.MCP
48
-
```
48
+
````
49
49
50
50
If updating:
51
51
52
-
```powershell
52
+
````powershell
53
53
dotnet tool update -g Telerik.Reporting.MCP
54
-
```
54
+
````
55
55
56
56
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:
57
57
@@ -68,7 +68,7 @@ No manual install step is needed. The `dnx` command will download and execute th
68
68
69
69
Add a `.mcp.json` file to your solution root (or to `%USERPROFILE%` for global usage):
70
70
71
-
```json
71
+
````json
72
72
{
73
73
"servers": {
74
74
"telerik-reporting-assistant": {
@@ -81,21 +81,21 @@ Add a `.mcp.json` file to your solution root (or to `%USERPROFILE%` for global u
81
81
}
82
82
}
83
83
}
84
-
```
84
+
````
85
85
86
86
If you prefer embedding the license string directly:
87
87
88
-
```json
88
+
````json
89
89
"env": {
90
90
"TELERIK_LICENSE": "YOUR_LICENSE_KEY"
91
91
}
92
-
```
92
+
````
93
93
94
94
### .NET 10 Configuration (`.mcp.json`)
95
95
96
96
Use these settings when configuring the server in your MCP client:
97
97
98
-
```json
98
+
````json
99
99
{
100
100
"servers": {
101
101
"telerik-reporting-assistant": {
@@ -111,7 +111,7 @@ Use these settings when configuring the server in your MCP client:
111
111
}
112
112
}
113
113
}
114
-
```
114
+
````
115
115
116
116
117
117
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,23 +142,23 @@ Add your [Telerik license key]({%slug license-key%}) using one of these options
> 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.
0 commit comments