Skip to content
MCP-Bridge
Cloud Infrastructure

Personalizer Client MCP Config

Personalizer Service is an Azure Cognitive Service that makes it easy to target content and experiences without complex pre-analysis or cleanup of past data. Given a context and featurized content, the Personalizer Service returns which content item to show to users in rewardActionId. As rewards are

Config URL

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

https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-personalizer.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-personalizer.json to fetch programmatically.

{
  "mcpServers": {
    "azure-com-cognitiveservices-personalizer": {
      "command": "npx",
      "args": ["-y","@mcp/azure-com-cognitiveservices-personalizer"],
      "env": {
      "PERSONALIZER_CLIENT_API_KEY": "your_personalizer_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://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-personalizer.json

Environment Variables

PERSONALIZER_CLIENT_API_KEY

Replace your_personalizer_client_api_key with your actual personalizer client api key

Endpoints

GET/configurations/policy

Get Policy.

PUT/configurations/policy

Update Policy.

DELETE/configurations/policy

Reset Policy.

GET/configurations/service

Get Service Configuration.

PUT/configurations/service

Update Service Configuration.

GET/evaluations

List Evaluations.

POST/evaluations

Create Evaluation.

GET/evaluations/{evaluationId}

Get Evaluation.

DELETE/evaluations/{evaluationId}

Delete Evaluation.

POST/events/{eventId}/activate

Activate Event.