get_work_item
Retrieve detailed information about specific work items, including their current state, assigned user, custom fields, and full descriptions. Access data for single or multiple items in a clear, markdown-formatted output.
Instructions
Retrieves detailed information about one or multiple work items.
Use this tool when you need to:
- View the complete details of a specific work item
- Examine the current state, assigned user, and other properties
- Get information about multiple work items at once
- Access the full description and custom fields of work items
Args:
id: The work item ID or a list of work item IDs
Returns:
Formatted string containing comprehensive information for the
requested work item(s), including all system and custom fields,
formatted as markdown with clear section headings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"anyOf": [
{
"type": "integer"
},
{
"items": {
"type": "integer"
},
"type": "array"
}
],
"title": "Id"
}
},
"required": [
"id"
],
"title": "get_work_itemArguments",
"type": "object"
}