azure-devops-mcp

by RyanCardin15
Verified

createIntelligentAlerts

Set up intelligent alerts based on patterns

Input Schema

NameRequiredDescriptionDefault
actionsNoActions to take when the alert triggers
alertNameYesName of the alert
alertTypeYesType of alert to create
conditionsYesConditions for the alert

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "actions": { "additionalProperties": {}, "description": "Actions to take when the alert triggers", "type": "object" }, "alertName": { "description": "Name of the alert", "type": "string" }, "alertType": { "description": "Type of alert to create", "enum": [ "build", "release", "test", "workitem", "code" ], "type": "string" }, "conditions": { "additionalProperties": {}, "description": "Conditions for the alert", "type": "object" } }, "required": [ "alertName", "alertType", "conditions" ], "type": "object" }

You must be authenticated.

Other Tools