Skip to main content
Glama

ado_search

Search Azure DevOps work items and wiki pages with full-text queries, then filter results by tags, area, assignee, type, or state to find relevant information.

Instructions

Full-text search of indexed Azure DevOps work items and wiki pages

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results
queryYesSearch query text
tag_filterNoFilter by tag
area_filterNoFilter by area path (prefix match)
assigned_toNoFilter by assignee email
type_filterNoFilter by work item type (e.g. 'Bug', 'User Story')
state_filterNoFilter by state (e.g. 'Active', 'Closed')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It implies a read-only search operation but does not confirm side-effect freedom, result ordering, index staleness, pagination behavior, or authentication requirements.

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?

The description is a single, front-loaded sentence with no filler. Every word adds meaning, and it avoids repeating parameter names or schema content.

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 7-parameter search tool with no output schema and no annotations, the description is minimal but sufficient for basic invocation: an agent knows to provide a query and can infer filters from the schema. However, it does not disclose what results look like, how they are ordered, or edge-case behavior.

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 the schema already documents all parameters. The description adds the 'full-text' and 'indexed' framing but does not provide meaningful parameter-level detail beyond what the input schema contains.

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?

The description clearly states the verb ('Full-text search'), the resource ('indexed Azure DevOps work items and wiki pages'), and the general scope. This helps distinguish it from siblings like ado_grep or ado_fetch, though it does not explicitly name them.

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

Usage Guidelines2/5

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

The description gives no indication of when to use this tool over alternatives such as ado_grep or ado_show. There is no mention of preferred use cases, exclusions, or conditions that would route an agent to a different sibling.

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