QnAMaker Client Claude Desktop Config
Add the QnAMaker Client MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"azure-com-cognitiveservices-qnamaker": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-cognitiveservices-qnamaker"
],
"env": {
"QNAMAKER_CLIENT_API_KEY": "your_qnamaker_client_api_key"
}
}
}
}Environment Variables
QNAMAKER_CLIENT_API_KEYReplace your_qnamaker_client_api_key with your actual qnamaker client api key
Endpoints
GET
/alterationsDownload alterations from runtime.
PUT
/alterationsReplace alterations data.
GET
/endpointSettingsGets endpoint settings for an endpoint.
PATCH
/endpointSettingsUpdates endpoint settings for an endpoint.
GET
/endpointkeysGets endpoint keys for an endpoint
PATCH
/endpointkeys/{keyType}Re-generates an endpoint key.
GET
/knowledgebasesGets all knowledgebases for a user.
POST
/knowledgebases/createAsynchronous operation to create a new knowledgebase.
GET
/knowledgebases/{kbId}Gets details of a specific knowledgebase.
POST
/knowledgebases/{kbId}Publishes all changes in test index of a knowledgebase to its prod index.