Skip to main content
Glama
jrsaavedra1022

Azure DevOps Classic MCP

ado_get_release_definition

Read-onlyIdempotent

Read safe Classic Release metadata, omitting task bodies and variable values, to inspect release definitions.

Instructions

Read safe Classic Release metadata without task bodies or variable values.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectNo
definitionIdYes
organizationNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds the valuable behavioral disclosure that task bodies and variable values are intentionally omitted from the result, which is not covered by annotations. 'Safe' aligns with read-only but adds no new info; the exclusion does.

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?

A single, front-loaded sentence states the purpose first and the exclusion second. There is zero wasted text, and it is structured for rapid comprehension.

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

Completeness2/5

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

With three parameters, no output schema, and no return-format description, the one-liner is insufficient. It does not explain what metadata is actually returned (e.g., name, id, stages), nor does it describe parameter constraints or usage context, leaving critical gaps for an agent to call it correctly.

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

Parameters1/5

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

Schema description coverage is 0% and the description mentions none of the three parameters (project, definitionId, organization). Even the required definitionId is unexplained, leaving the agent without any hint about what values to supply or what each parameter represents.

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

Purpose5/5

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

The description uses a specific verb ('Read') and resource ('Classic Release metadata') and clarifies scope by excluding 'task bodies or variable values'. This clearly distinguishes it from sibling list tools and the variable getter, with no ambiguity.

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?

The exclusion of task bodies and variable values implies when to use this tool (when those are not needed), but it does not name alternatives or explicitly state 'use this instead of list_release_definitions or get_release_variables'. Guidance is implied, not explicit.

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