Anomaly Detector Client MCP Config
The Anomaly Detector API detects anomalies automatically in time series data. It supports two kinds of mode, one is for stateless using, another is for stateful using. In stateless mode, there are three functionalities. Entire Detect is for detecting the whole series with model trained by the time s
Config URL
Use this URL in any MCP-compatible client to fetch the config automatically.
https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-anomalydetector.jsonConfiguration JSON
Use curl https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-anomalydetector.json to fetch programmatically.
{
"mcpServers": {
"azure-com-cognitiveservices-anomalydetector": {
"command": "npx",
"args": ["-y","@mcp/azure-com-cognitiveservices-anomalydetector"],
"env": {
"ANOMALY_DETECTOR_CLIENT_API_KEY": "your_anomaly_detector_client_api_key"
}
}
}
}How to Use
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-anomalydetector.jsonEnvironment Variables
ANOMALY_DETECTOR_CLIENT_API_KEYReplace your_anomaly_detector_client_api_key with your actual anomaly detector client api key
Endpoints
/timeseries/changePoint/detectDetect change point for the entire series
/timeseries/entire/detectDetect anomalies for the entire series in batch.
/timeseries/last/detectDetect anomaly status of the latest point in time series.