Anomaly Finder Client MCP Config
The Anomaly Finder API detects anomalies automatically in time series data. It supports two functionalities, one is for detecting the whole series with model trained by the timeseries, another is detecting last point with model trained by points before. By using this service, business customers can
Config URL
Use this URL in any MCP-compatible client to fetch the config automatically.
https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-anomalyfinder.jsonConfiguration JSON
Use curl https://mcp-bridge.pages.dev/config/azure-com-cognitiveservices-anomalyfinder.json to fetch programmatically.
{
"mcpServers": {
"azure-com-cognitiveservices-anomalyfinder": {
"command": "npx",
"args": ["-y","@mcp/azure-com-cognitiveservices-anomalyfinder"],
"env": {
"ANOMALY_FINDER_CLIENT_API_KEY": "your_anomaly_finder_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-anomalyfinder.jsonEnvironment Variables
ANOMALY_FINDER_CLIENT_API_KEYReplace your_anomaly_finder_client_api_key with your actual anomaly finder client api key
Endpoints
/timeseries/entire/detectFind anomalies for the entire series in batch.
/timeseries/last/detectDetect anomaly status of the latest point in time series.