Skip to content
MCP-Bridge
AI & ML

Text Analytics Client Claude Desktop Config

Add the Text Analytics 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-textanalytics": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/azure-com-cognitiveservices-textanalytics"
      ],
      "env": {
        "TEXT_ANALYTICS_CLIENT_API_KEY": "your_text_analytics_client_api_key"
      }
    }
  }
}

Environment Variables

TEXT_ANALYTICS_CLIENT_API_KEY

Replace your_text_analytics_client_api_key with your actual text analytics client api key

Endpoints

POST/entities

The API returns a list of recognized entities in a given document.

POST/keyPhrases

The API returns a list of strings denoting the key talking points in the input text.

POST/languages

The API returns the detected language and a numeric score between 0 and 1.

POST/sentiment

The API returns a numeric score between 0 and 1.