Skip to main content
Glama
bugzy-ai

Azure DevOps MCP Server

by bugzy-ai

azuredevops_add_comment

Add an HTML-formatted comment to an existing Azure DevOps work item using its ID and project, so AI assistants can post updates and feedback in context.

Instructions

Add a comment to an existing Azure DevOps work item. Supports HTML formatting. Project is required - discover it from project context.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesWork item ID to add comment to
textYesComment text (supports HTML formatting)
projectYesAzure DevOps project name (required - discover from project context)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. It usefully discloses HTML-formatting support for the comment body, but says nothing about permissions, whether the comment triggers notifications, whether it is reversible/editable, or what the call returns. For a mutation tool with zero annotation coverage this is a meaningful gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, zero waste, with the core action front-loaded and the two non-obvious constraints (HTML support, required project) following. Nothing redundant.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 3-param mutation tool with no annotations and no output schema, the description covers the essential action and the HTML/project requirements but omits the return payload and any auth or side-effect context an agent might need before writing a comment.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all three params are already documented in the schema. The description only restates HTML formatting (also in the schema) and reiterates that project is required and must be discovered from context. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'Add a comment to an existing Azure DevOps work item.' An agent can distinguish this from create_work_item or update_work_item. It does not, however, explicitly contrast itself with those siblings, so it stops just short of 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied by the resource (commenting on an existing item), but there is no explicit when-to-use guidance or exclusion relative to update_work_item, which also mutates a work item. The only routing-level advice is about obtaining the project, which is parameter guidance rather than tool-selection guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.