An MCP (Model Context Protocol) server that provides API documentation for HAVIT Blazor components. AI assistants (GitHub Copilot, Claude Code, Cursor, Windsurf, etc.) can use this server to look up component parameters, properties, events, methods, and demo samples.
The MCP server is available as a Premium feature. Learn more about Premium subscription.
Select your IDE to get customized instructions.
IDE / AI assistant
Add to your .vscode/mcp.json (or user/workspace settings):
{
"servers": {
"HAVIT Blazor Documentation": {
"type": "http",
"url": "https://mcp.havit.blazor.eu"
}
}
}
See Use MCP servers in VS Code for more details.
Returns the API documentation for a HAVIT Blazor component in Markdown format, including demo samples.
Also resolves derived components with custom prefixes (e.g. BtPager, PxButton) to their base Hx component.
Returns the API documentation for a HAVIT Blazor supporting type (enum, settings class, delegate) in Markdown format.
Returns a list of all HAVIT Blazor components (Hx*) with their name and summary description.
No parameters required.
Returns all demo/sample code snippets (Razor source) for a HAVIT Blazor component.
Also resolves derived components with custom prefixes (e.g. BtPager, PxButton) to their base Hx component.
Once configured, you can ask your AI assistant about a component, for example:
"What parameters does HxButton have?"
The assistant should use the get_component_docs tool and return the API documentation.