Skip to content
MCP-Bridge
Developer Tools

QnAMaker Client Claude Desktop Config

Add the QnAMaker Client MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. 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_KEY

Replace your_qnamaker_client_api_key with your actual qnamaker client api key

Endpoints

GET/alterations

Download alterations from runtime.

PUT/alterations

Replace alterations data.

GET/endpointSettings

Gets endpoint settings for an endpoint.

PATCH/endpointSettings

Updates endpoint settings for an endpoint.

GET/endpointkeys

Gets endpoint keys for an endpoint

PATCH/endpointkeys/{keyType}

Re-generates an endpoint key.

GET/knowledgebases

Gets all knowledgebases for a user.

POST/knowledgebases/create

Asynchronous 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.