A Model Context Protocol (MCP) server that reflects Blazor/Razor assemblies to expose live component metadata and developer tools for AI-assisted code generation and analysis.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"components.mcp.blazo": {
"command": "npx",
"args": [
"-y",
"SimonLiebers-Dev/Components.MCP.Blazor"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add components.mcp.blazo npx -y SimonLiebers-Dev/Components.MCP.Blazor
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"components.mcp.blazo": {
"command": "npx",
"args": [
"-y",
"SimonLiebers-Dev/Components.MCP.Blazor"
]
}
}
}
📋 Copy