A command-line tool and MCP (Model Context Protocol) server for querying Ant Design Blazor component information.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"antdesign-cli": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A command-line tool and MCP (Model Context Protocol) server for querying Ant Design Blazor component information. It helps developers quickly access component documentation and API details directly from the command line or through GitHub Copilot.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design / developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for AntDesign.Cli and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A command-line tool and MCP (Model Context Protocol) server for querying Ant Design Blazor component information. It helps developers quickly access component documentation and API details directly from the command line or through GitHub Copilot.
For detailed implementation guide and technical discussion, check out our blog posts:
list: List all componentssearch -n <ComponentName1,ComponentName2,...>: Batch search components by namecategory -n <CategoryName>: Filter components by categorydemo-list: List all component demosdemo -n <ComponentName>: View demos for a specific componentSearchComponents: Batch search components by nameListComponents: List all componentsGetComponentsByCategory: Get components by categoryListAllDemos: List all component demosSearchComponentDemos: Get demos by component name and scenariodotnet tool install --global AntDesign.Cli
# List all components
antblazor list
# Search for a specific component
antblazor search -n Button
# Get components by category
antblazor category -n Navigation
mcp.json:{
"servers": {
"antblazor": {
"type": "stdio",
"command": "antblazor",
"args": ["-mcp"]
}
}
}
Or use the installation link:
vscode:mcp/install?{"name":"antblazor","command":"antblazor","args":["-mcp"]}
This project demonstrates how to:
Key technologies used:
The process of converting a .NET CLI tool to an MCP server involves several steps:
<ItemGroup>
<PackageReference Include="ModelContextProtocol" Version="0.1.0-preview.12" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
</ItemGroup>
[McpServerToolType]
public sealed class AntDesignTools
{
[McpServerTool]
[Description("Search for an Ant Design Blazor component by name")]
public async Task<string> SearchComponent(
[Description("The name of the component to search for")] string name)
{
// Implementation
}
}
if (args.Length == 1 && args[0] == "-mcp")
{
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddMcpServer()
.WithStdioServerTransport()
.WithTools<AntDesignTools>();
await builder.Build().RunAsync();
return 0;
}
Contributions are welcome! Please feel free to submit a Pull Request.
MIT