ado_workitems_query
Run a WIQL query against Azure DevOps to retrieve work items matching your criteria, including ID, title, state, type, and assignee.
Instructions
Run a WIQL (Work Item Query Language) query against Azure DevOps and return matching work items. Example: SELECT [System.Id], [System.Title], [System.State] FROM WorkItems WHERE [System.WorkItemType] = 'Bug' AND [System.State] <> 'Closed'. Returns ID, title, state, type, and assignee for each match. Use ado_workitems_get for full details on a specific item.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | Max results (default 50, max 200) | |
| query | Yes | WIQL query string. Must be a SELECT statement. | |
| project | No | Project to query. Uses default if omitted. |