npx skills add ...
npx skills add microsoft/azure-devops-skills --skill security-alert-review
npx skills add microsoft/azure-devops-skills --skill security-alert-review
List and review Advanced Security alerts for an Azure DevOps repository. Shows dependency vulnerabilities, secret exposure, and code scanning findings with filtering by severity, state, and alert type.
This skill works in the context of a project and a repository. Both are required to retrieve alerts.
core_list_projects.core_list_projects to return a list of projects the user can choose from.repo_list_repos_by_project to list available repositories for the user to choose from.Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.
core_list_projects: Get a list of projects in the organization.repo_list_repos_by_project: Get a list of repositories for a project.advsec_get_alerts: Get Advanced Security alerts for a repository, with optional filters for severity, state, alert type, and confidence level.advsec_get_alert_details: Get detailed information about a specific alert by ID.advsec_get_alerts for the specified project and repository.severities (for example, "show critical alerts" → ["Critical"]).states (for example, "show active alerts" → ["Active"]).alertType (for example, "show dependency alerts" → "Dependency"). Valid types are: Dependency, Secret, Code.confidenceLevels: ["High", "Other"] on every call to advsec_get_alerts unless the user explicitly requests a specific confidence filter.onlyDefaultBranch: true, states: ["Active"], and confidenceLevels: ["High", "Other"]).advsec_get_alert_details with the alert ID, project, and repository.advsec_get_alerts (with no severity or type filter, states: ["Active"], and confidenceLevels: ["High", "Other"]) and present a summary grouped by:
advsec_get_alerts returns up to 100 alerts by default. If the results include a continuation token, let the user know the summary is based on the first batch of alerts and that additional alerts exist.When displaying alert lists, show in a table:
MM/DD/YYYYWhen displaying alert details, show:
When displaying the summary view, show:
| Alert Type | 🔴 Critical | 🟠 High | 🟡 Medium | 🟢 Low | Other | Total |
|---|---|---|---|---|---|---|
| Dependency | count | count | count | count | count | count |
| Secret | count | count | count | count | count | count |
| Code | count | count | count | count | count | count |
| Total | count | count | count | count | count | count |
The Other column includes any alerts with severity values outside Critical/High/Medium/Low (for example, Note, Warning, Error, or Undefined).