Kanzi Documentation MCP server¶
The Kanzi Documentation MCP server connects your AI assistant to the Kanzi documentation sources. This allows the AI assistant to search and retrieve information from the Kanzi documentation to answer your questions about Kanzi concepts, features, workflows, and best practices.
The Kanzi Documentation MCP server is available for these Kanzi versions:
Kanzi 3.9 at
https://kanzi-docs-mcp-v3-9.bravemeadow-3399f39c.westeurope.azurecontainerapps.io/sseKanzi 4.0 at
https://kanzi-docs-mcp-v4-0.bravemeadow-3399f39c.westeurope.azurecontainerapps.io/sse
Tip
On the Documentation website, you can use the AI assistant next to each topic title to set up the Kanzi Documentation MCP server in Claude Desktop and VS Code.
Setting up the Kanzi Documentation MCP server¶
Setting up in Claude Desktop¶
To set up the Kanzi Documentation MCP server in Claude Desktop:
Download and extract the configuration file:
For Kanzi 3.9, download from https://docs.kanzi.com/mcp/kanzi-v3-9.zip.
For Kanzi 4.0, download from https://docs.kanzi.com/mcp/kanzi-v4-0.zip.
Double-click the extracted mcpb (Claude Desktop MCP bundle) file to open it in Claude Desktop.
In Claude Desktop, click Install.
Setting up in VS Code¶
To set up the Kanzi Documentation MCP server in VS Code:
In VS Code, open the Command Palette (Ctrl Shift P) and select MCP: Open User Configuration.
In the
mcp.jsonfile, add the server configuration:{ "servers": { "kanzi-v3-9": { "type": "sse", "url": "https://kanzi-docs-mcp-v3-9.bravemeadow-3399f39c.westeurope.azurecontainerapps.io/sse" }, "kanzi-v4-0": { "type": "sse", "url": "https://kanzi-docs-mcp-v4-0.bravemeadow-3399f39c.westeurope.azurecontainerapps.io/sse" } }, "inputs": [] }
Open the Command Palette and select Developer: Reload Window.
Open the Chat window with Ctrl Alt I.
Setting up in Claude Code¶
To set up the Kanzi Documentation MCP server in Claude Code:
For Kanzi 3.9, run:
claude mcp add --transport sse kanzi-docs-v3-9 https://kanzi-docs-mcp-v3-9.bravemeadow-3399f39c.westeurope.azurecontainerapps.io/sse
For Kanzi 4.0, run:
claude mcp add --transport sse kanzi-docs-v4-0 https://kanzi-docs-mcp-v4-0.bravemeadow-3399f39c.westeurope.azurecontainerapps.io/sse
Setting up in other tools¶
To set up the Kanzi Documentation MCP server in other AI tools that support MCP, refer to the documentation of that tool. In the tool configuration, use the server URL with mcp-remote:
{
"mcpServers": {
"kanzi-v4-0": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://kanzi-docs-mcp-v4-0.bravemeadow-3399f39c.westeurope.azurecontainerapps.io/sse"
]
}
}
}