Radzen.Mcp
0.0.3
Prefix Reserved
{ "inputs": [], "servers": { "Radzen.Mcp": { "type": "stdio", "command": "dnx", "args": ["Radzen.Mcp@", "--yes"], "env": {} } } }
.vscode/mcp.json
settings file.
dotnet tool install --global Radzen.Mcp --version 0.0.3
dotnet new tool-manifest
dotnet tool install --local Radzen.Mcp --version 0.0.3
#tool dotnet:?package=Radzen.Mcp&version=0.0.3
nuke :add-package Radzen.Mcp --version 0.0.3
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.
Visual Studio and VS Code
- VS Code: Create a
<WORKSPACE DIRECTORY>\.vscode\mcp.json
file if it doesn't exist already - Visual Studio: Create a
<SOLUTION DIRECTORY>\.mcp.json
file 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:
Cursor
Create a <WORKSPACE DIRECTORY>\.cursor\mcp.json
file if it doesn't exist already.
Add the following server definition to it:
{
"mcpServers": {
"radzen.mcp": {
"command": "radzen.mcp"
}
}
}
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
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.