Text Analytics Client Claude Desktop Config
Add the Text Analytics 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-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_KEYReplace your_text_analytics_client_api_key with your actual text analytics client api key
Endpoints
POST
/entitiesThe API returns a list of recognized entities in a given document.
POST
/keyPhrasesThe API returns a list of strings denoting the key talking points in the input text.
POST
/languagesThe API returns the detected language and a numeric score between 0 and 1.
POST
/sentimentThe API returns a numeric score between 0 and 1.