From be5872f47b8474577983622b063b5be03b2314f8 Mon Sep 17 00:00:00 2001 From: StenlyGrigorov <87754679+StenlyGrigorov@users.noreply.github.com> Date: Fri, 5 Dec 2025 14:32:20 +0200 Subject: [PATCH] Update mcp-server-as-a-nuget.md --- ai-assistant/mcp-server-as-a-nuget.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ai-assistant/mcp-server-as-a-nuget.md b/ai-assistant/mcp-server-as-a-nuget.md index a065fd5e4..d6731f9a3 100644 --- a/ai-assistant/mcp-server-as-a-nuget.md +++ b/ai-assistant/mcp-server-as-a-nuget.md @@ -15,7 +15,7 @@ The Telerik WPF [MCP (Model Context Protocol) Server](https://modelcontextprotoc | Target Runtime | Required SDK | Invocation Method | Notes | |----------------|--------------|-------------------|-------| -| .NET 8 / .NET 9 | .NET 8 or .NET 9 SDK | Local dotnet tool (`telerik-wpf-mcp.exe`) | `dnx` not supported; install tool manually | +| .NET 8 / .NET 9 | .NET 8 or .NET 9 SDK | Local dotnet tool (`telerik-wpf-assistant.exe`) | `dnx` not supported; install tool manually | | .NET 10 | .NET 10 SDK (Preview 6 or newer) | `dnx` dynamic execution | Simplest approach; no prior install step | Common requirements: @@ -30,8 +30,8 @@ Common requirements: |--------|------------|---------| | Availability of `dnx` | Not available | Available | | Install Command | `dotnet tool install --tool-path ./.tools Telerik.WPF.MCP` | None (resolved on demand) | -| Executable Path | `./.tools/telerik-wpf-mcp.exe` | Handled by `dnx` | -| .mcp.json Command | `.\\.tools\\telerik-wpf-mcp.exe` | `dnx` | +| Executable Path | `./.tools/telerik-wpf-assistant.exe` | Handled by `dnx` | +| .mcp.json Command | `.\\.tools\\telerik-wpf-assistant.exe` | `dnx` | | .mcp.json Args | _None_ | `Telerik.WPF.MCP`, `--yes` | | Update Version | Re-run tool install with `--version` or `tool update` | Handled by latest package resolved by `dnx` | | Offline Use | Requires prior tool install | Requires prior NuGet cache warm-up | @@ -52,7 +52,7 @@ If updating: dotnet tool update --tool-path ./.tools Telerik.WPF.MCP ``` -This creates the executable at `./.tools/telerik-wpf-mcp.exe`. +This creates the executable at `./.tools/telerik-wpf-assistant.exe`. ### .NET 10 @@ -69,7 +69,7 @@ Add a `.mcp.json` file to your solution root (or to `%USERPROFILE%` for global u "servers": { "telerik-wpf-assistant": { "type": "stdio", - "command": ".\\.tools\\telerik-wpf-mcp.exe", + "command": ".\\.tools\\telerik-wpf-assistant.exe", "env": { "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE" } @@ -109,7 +109,7 @@ Add a `.mcp.json` file to your solution (root) folder. Choose the variant that m "servers": { "telerik-wpf-assistant": { "type": "stdio", - "command": ".\\.tools\\telerik-wpf-mcp.exe", + "command": ".\\.tools\\telerik-wpf-assistant.exe", "env": { "TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE" }