Kanzi Documentation MCP server¶
The Kanzi Documentation MCP server connects your AI assistant to the Kanzi documentation sources. This allows your 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 at https://docs.mcp.kanzi.com/mcp.
Tip
You can set up the Kanzi Documentation MCP server in Claude Desktop and VS Code from two places on the Documentation website: from the AI assistant button next to any topic title, or from the Get Kanzi guidance in your IDE pill inside Ask Kanzi.
Setting up the Kanzi Documentation MCP server¶
Setting up in Claude Desktop¶
To set up the Kanzi Documentation MCP server in Claude Desktop:
Download the zipped mcpb file from https://docs.kanzi.com/mcp/kanzi-docs-mcp.zip.
Extract the zip file to get
kanzi-docs-mcp.mcpb.Double-click the mcpb 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-docs": { "type": "http", "url": "https://docs.mcp.kanzi.com/mcp" } }, "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:
claude mcp add --scope user --transport http kanzi-docs https://docs.mcp.kanzi.com/mcp
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-docs": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://docs.mcp.kanzi.com/mcp"
]
}
}
}
Available tools¶
The Kanzi Documentation MCP server provides these tools:
list_versions: List all available Kanzi documentation versions
set_version: Switch to a specific Kanzi version
search_docs: Search Kanzi documentation for relevant information
ask_question: Get answers to questions about Kanzi
get_page: Retrieve a full documentation page
search_across_versions: Search across all loaded Kanzi versions
compare_versions: Compare documentation between two Kanzi versions