Skip to main content
Glama
getsomesh

MCP Azure DevOps Server

by getsomesh

get_repository_info

Retrieve repository URL, branch check-in dates, and PROD/QA deployment details from Azure DevOps to quickly assess repository status.

Instructions

Get repository URL, branches with latest check-in dates, and latest PROD/QA deployment information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectNoProject name (optional - will search if not provided)
repositoryYesRepository name

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/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 burden of behavioral disclosure. It does reveal what data the tool returns, which is useful, but it does not explicitly confirm the operation is read-only, mention permission requirements, or describe error/failure behavior. This is partial but not misleading.

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 or redundancy. It lists the main outputs in a compact, scannable way, making it easy for an agent to parse quickly.

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

Completeness4/5

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

For a two-parameter read tool with no output schema, the description adequately covers the key return items (URL, branches, deployment info). The schema handles the parameter semantics, including the optional 'project' search behavior. Missing error-handling or edge-case details are not critical for basic invocation.

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%: both 'project' and 'repository' are already described in the input schema. The tool description adds no extra meaning beyond what the schema provides, so the baseline score of 3 applies.

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 clearly states the verb 'Get' and names specific resources: repository URL, branches with latest check-in dates, and latest PROD/QA deployment information. This makes the tool's function concrete and distinct from sibling tools like search_repositories and get_pipeline_variables / get_variable_groups.

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?

No explicit guidance is given about when to use this tool versus its siblings, nor are there any exclusions or prerequisites mentioned. The description implies use when repository details are needed, but leaves the decision entirely to inference.

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