Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ai-assistant/mcp-server-as-a-nuget.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 |
Expand All @@ -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

Expand All @@ -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"
}
Expand Down Expand Up @@ -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"
}
Expand Down