Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

QnAMaker Client MCP Config

An API for QnAMaker Service

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/azure-com-cognitiveservices-qnamaker.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to 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"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "azure-com-cognitiveservices-qnamaker": {
      "url": "https://mcpbridge.org/config/azure-com-cognitiveservices-qnamaker.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "azure-com-cognitiveservices-qnamaker": {
      "url": "https://mcpbridge.org/config/azure-com-cognitiveservices-qnamaker.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/azure-com-cognitiveservices-qnamaker.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-cognitiveservices-qnamaker": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-cognitiveservices-qnamaker"],
      "env": {
      "QNAMAKER_CLIENT_API_KEY": "your_qnamaker_client_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/azure-com-cognitiveservices-qnamaker.json

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.