Blazorise MCP Server

Connect your AI tools to Blazorise documentation and code examples using the Model Context Protocol (MCP).

The Blazorise MCP server lets MCP-compatible AI clients query official Blazorise documentation directly instead of relying on generic or outdated training data.

When you ask a question, your AI client can fetch the exact documentation page, section, or code example it needs and use that content to generate accurate answers.

Supported operations include browsing documentation routes, opening specific pages, retrieving individual example snippets, and searching documentation content by keyword.

Client configuration

To use the Blazorise MCP server, add its SSE endpoint to your MCP client configuration. Most MCP clients accept a JSON configuration similar to the example below.

MCP client configuration is typically stored in a JSON file named .mcp.json located in your project root or user configuration directory, depending on the client you are using.

Example MCP client entry

Update the url value to point to the MCP server you want to connect to.

Add this entry to your .mcp.json file and update the url if needed.

{
  "servers": {
    "blazorise-docs": {
      "type": "http",
      "url": "https://mcp.blazorise.com/mcp/sse"
    }
  }
}
On this page