get_work_item_types
Retrieve a list of all work item types in an Azure DevOps project, including names, reference names, and descriptions, to facilitate project planning and task creation.
Instructions
Gets a list of all work item types in a project.
Use this tool when you need to:
- See what work item types are available in a project
- Get reference names for work item types to use in other operations
- Plan work item creation by understanding available types
Args:
project: Project ID or project name
Returns:
A formatted table of all work item types with names, reference
names, and descriptions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project": {
"title": "Project",
"type": "string"
}
},
"required": [
"project"
],
"title": "get_work_item_typesArguments",
"type": "object"
}