get_work_item_comments
Retrieve and format all comments for a specific work item in Azure DevOps, including author names, timestamps, and content, to review discussion history, feedback, and context evolution.
Instructions
Retrieves all comments associated with a specific work item.
Use this tool when you need to:
- Review discussion history about a work item
- See feedback or notes left by team members
- Check if specific questions have been answered
- Understand the context and evolution of a work item
Args:
id: The work item ID
project: Optional project name. If not provided, will be
determined from the work item.
Returns:
Formatted string containing all comments on the work item,
including author names, timestamps, and content, organized
chronologically and formatted as markdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
project | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"title": "Id",
"type": "integer"
},
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project"
}
},
"required": [
"id"
],
"title": "get_work_item_commentsArguments",
"type": "object"
}