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 either the streamable HTTP endpoint (https://mcp.blazorise.com/mcp) or the SSE endpoint (https://mcp.blazorise.com/mcp/sse) to your MCP client configuration. Most 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.

HTTP (streamable) config

Use this for clients that support MCP streamable HTTP transport.

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

SSE config

Use this for clients that connect through the SSE MCP transport.

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