Personalizer Client Claude Desktop Config
Add the Personalizer 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-personalizer": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-cognitiveservices-personalizer"
],
"env": {
"PERSONALIZER_CLIENT_API_KEY": "your_personalizer_client_api_key"
}
}
}
}Environment Variables
PERSONALIZER_CLIENT_API_KEYReplace your_personalizer_client_api_key with your actual personalizer client api key
Endpoints
GET
/configurations/policyGet Policy.
PUT
/configurations/policyUpdate Policy.
DELETE
/configurations/policyReset Policy.
GET
/configurations/serviceGet Service Configuration.
PUT
/configurations/serviceUpdate Service Configuration.
GET
/evaluationsList Evaluations.
POST
/evaluationsCreate Evaluation.
GET
/evaluations/{evaluationId}Get Evaluation.
DELETE
/evaluations/{evaluationId}Delete Evaluation.
POST
/events/{eventId}/activateActivate Event.