Radzen.Mcp 0.0.1
Radzen.Mcp
radzen.mcp is a Model Context Protocol (MCP) server that helps developers work with the Radzen.Blazor component library.
Installation
Prerequisites
- .NET 8 SDK or later
- NuGet access
Install the global tool
dotnet tool install --global Radzen.Mcp
Verify installation
radzen.mcp
Updating
dotnet tool update --global Radzen.Mcp
Uninstalling
dotnet tool uninstall --global Radzen.Mcp
IDE Integration
IMPORTANT: Make sure you have an up-to-date version of VS Code or Visual Studio that has MCP support enabled and Copilot or other coding agent support installed.
- VS Code: Create a
<WORKSPACE DIRECTORY>/.vscode/mcp.jsonfile if it doesn't exist already - Visual Studio: Create a
<SOLUTION DIRECTORY>\.mcp.jsonfile if it doesn't exist already
For both VS Code and Visual Studio, the configuration file uses the following server definition:
{
"servers": {
"radzen.mcp": {
"type": "stdio",
"command": "radzen.mcp",
"args": []
}
}
}
Refer to the VS Code or Visual Studio documentation for more information on configuring and using MCP servers:
Using the Radzen.MCP server
Now your AI agent (e.g. Copilot) can use the Radzen MCP server to answer your Radzen.Blazor related questions. Use the #radzen_search prefix to ensure the MCP server
is requested:
#radzen_search grid paging
This package has no dependencies.