Skip to main content
Glama

mcp-azure-devops

CI License: MIT npm

A Model Context Protocol server for Azure DevOps. It lets an MCP-capable client (Claude Desktop, Claude Code, Cursor, Codex, …) work across boards, repos, pipelines, and projects — with a governance layer that keeps an AI agent inside safe boundaries.

What this offers

  • Projects & teams — list projects/teams/members, inspect process templates.

  • Boards / work items — WIQL queries, get work items, create/update work items, list iterations (sprints).

  • Repos / pull requests — list repositories and branches, list/get PRs, open PRs.

  • Pipelines / builds — list pipelines and recent builds, get a build, queue a run.

  • Admin / process — list process templates, create a project, delete a project (guarded).

  • Governance built in — access modes, project allowlists, protected projects, delete gating, typed confirmation for high-impact ops, dry-run, and JSON audit logging.

Related MCP server: Azure DevOps MCP Server

Governance & security model

Concern

Flag

Default

Effect

What can the server do?

AZDO_MODE

read-only

read-only → reads; read-write → work items, PRs, pipeline runs; admin → create/delete project. Tools above the mode are never registered.

Which projects are in scope?

AZDO_PROJECT_ALLOWLIST

(all)

Operations on other projects are refused.

Which projects are read-only forever?

AZDO_PROTECTED_PROJECTS

(none)

Readable, never mutable.

Can it delete?

AZDO_ALLOW_DELETE

false

delete_project needs this and admin mode.

Typed confirmation

AZDO_REQUIRE_CONFIRMATION

true

High-impact ops require confirm to equal the target name — not just a boolean.

Preview

AZDO_DRY_RUN

false

Write/admin tools validate + log intent, then return.

Audit trail

AZDO_AUDIT_LOG

true

JSON line to stderr per guarded operation.

Interactive confirmation

(automatic)

Destructive & high-impact actions prompt the human to approve via MCP elicitation before running; clients without elicitation fall back to the *_ALLOW_* gate.

Tools

Read (read-only+): list_projects, get_project, list_teams, list_team_members, list_processes, query_work_items, get_work_item, list_iterations, list_repositories, list_branches, list_pull_requests, get_pull_request, list_pipelines, list_builds, get_build

Write (read-write+): create_work_item, update_work_item, create_pull_request, run_pipeline

Admin (admin): create_project, delete_project (needs AZDO_ALLOW_DELETE + typed confirm)

Quickstart — add to your agent

Published on npm as @dockndevai/mcp-azure-devops. Runs via npx; needs an org and a PAT. See docs/CLIENTS.md for every client and .env.example for all variables.

Claude Code

claude mcp add azure-devops -e AZDO_ORG_URL="https://dev.azure.com/your-org" -e AZDO_PAT="your-pat" -e AZDO_MODE="read-only" -- npx -y @dockndevai/mcp-azure-devops

Claude Desktop · Cursor · Windsurf

{
  "mcpServers": {
    "azure-devops": {
      "command": "npx",
      "args": ["-y", "@dockndevai/mcp-azure-devops"],
      "env": {
        "AZDO_ORG_URL": "https://dev.azure.com/your-org",
        "AZDO_PAT": "your-pat",
        "AZDO_MODE": "read-only"
      }
    }
  }
}

Example prompts

  • "List active pull requests in the Payments project's api repo"

  • "Query work items assigned to me that are still Active"

  • "Show the last 10 builds in the Web project and which failed"

  • "Create a Bug in Payments titled 'Checkout 500 on retry'" (needs read-write)

Run from source (development)

npm install
npm run build
node dist/index.js   # with the environment variables set

Develop

npm run dev
npm test          # governance policy: modes, allowlists, delete gating, confirmation
npm run typecheck

Publishing

Ships a server.json for the official MCP registry and an mcpName for npm ownership validation. See PUBLISHING.md.

License

MIT

Available Tools

15 tools
get_buildGet buildA
Read-onlyIdempotent

Fetch a single build / pipeline run by id, with its status, result, and timing.

ParametersJSON Schema
NameRequiredDescriptionDefault
buildIdYesBuild / run id (from list_builds)
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already disclose the read-only, idempotent, non-destructive, and open-world nature of the tool. The description adds value by naming what the result contains (status, result, timing), but it does not go deeper into potential access requirements, response shape, or edge cases. With annotations carrying most of the safety behavior, 3 is appropriate.

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, well-structured sentence that front-loads the action, scope, and key output fields. There is no filler, and every clause contributes to understanding what the tool does.

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

Completeness5/5

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

For a simple single-resource fetch tool, the description plus schema fully covers the required inputs, the return focus, and the non-destructive behavior via annotations. No output schema exists, but naming status, result, and timing gives sufficient return-value context. Nothing critical is missing for an agent to call this correctly.

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%, and both parameters already have meaningful descriptions, including the buildId provenance from list_builds. The tool description primarily restates the id-based lookup and does not add substantial semantics beyond the schema, so the baseline 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 a specific verb ('Fetch'), a specific resource ('a single build / pipeline run'), and the retrieval key ('by id'). It also lists the key returned aspects (status, result, timing), and the 'single' qualifier distinguishes it from sibling list_builds without relying on the schema.

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

Usage Guidelines4/5

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

The description implies the right usage context: use this tool when you need one build identified by its id rather than a list of builds. It does not explicitly name alternatives or exclusions, but the id-based and single-item framing provides clear context. The schema's 'from list_builds' hint further reinforces the workflow.

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

get_projectGet projectA
Read-onlyIdempotent

Fetch the full details (id, description, visibility, state, capabilities) of a single project.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the list of returned fields, which is useful behavioral context about the output, but does not describe error conditions or side effects. This is adequate given the annotations.

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 action and the exact fields returned. Every word adds value, and there is no extraneous information.

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 simple read operation with one well-documented parameter and annotations covering safety, the description is nearly complete. It lists the output fields, and the schema covers the parameter constraint. It does not mention not-found behavior, but that is a minor gap for such a tool.

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?

The input schema has 100% coverage, fully describing the 'project' parameter including the allowlist constraint. The description adds no additional parameter-level information, so the baseline of 3 applies—the schema carries the semantic load.

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 ('Fetch') and a clear resource ('full details of a single project'), explicitly listing the fields returned (id, description, visibility, state, capabilities). This distinguishes it from list_projects and other get_* siblings without needing to inspect schemas.

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

Usage Guidelines4/5

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

The description clearly implies usage for retrieving details of a specific project by name or id, which differentiates it from list_projects. However, it does not explicitly name the alternative or state when not to use it, leaving some inference to the agent.

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

get_pull_requestGet pull requestA
Read-onlyIdempotent

Fetch a single pull request by id, including its source/target branches, status, and reviewers.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPull request id (from list_pull_requests)
repoYesRepository id or name (from list_repositories)
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true, covering the safety profile. The description adds value by specifying the response content (branches, status, reviewers), which is not in annotations. No contradictions.

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, concise sentence that front-loads the verb and resource. Every word adds value without redundancy.

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?

Given the simple read-only nature, rich annotations, and full schema coverage, the description is sufficient. It mentions the key returned fields, and no output schema exists to require extra explanation. It could note error handling, but that is not expected for a fetch tool.

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% with clear parameter descriptions for id, repo, and project. The tool description does not add any additional parameter meaning beyond what the schema provides, so baseline 3 is appropriate.

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 it fetches a single pull request by id and lists the included fields (source/target branches, status, reviewers). This is specific and distinguishes it from list_pull_requests which fetches multiple. The verb 'Fetch' and resource 'pull request' make the purpose unambiguous.

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 description implies usage when a specific pull request id is available (since it says 'by id'), but it does not explicitly mention alternatives like list_pull_requests or when not to use this tool. The context is implied rather than stated.

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

get_work_itemGet work itemA
Read-onlyIdempotent

Fetch a single work item by id, including all of its fields (title, state, assignee, tags, …).

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesWork item id (from query_work_items)

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, covering the safety profile. The description adds that the tool returns 'all of its fields', which is useful context. However, it doesn't disclose error handling, rate limits, or authentication requirements, but the annotation coverage lowers the burden. No contradiction with annotations.

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, efficient sentence that front-loads the core action and resource, then adds detail on fields. There is no filler or redundancy.

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 simple fetch tool with one parameter and annotations covering safety, the description is nearly complete. It mentions the return fields, though it doesn't specify the exact response format or error behavior. Given the absence of an output schema, the description could have added a bit more about the response structure, but overall it's adequate 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.

Parameters3/5

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

The input schema has 100% description coverage; the parameter 'id' is documented as 'Work item id (from query_work_items)', providing context. The description does not add any additional semantic meaning beyond the schema. Baseline 3 is appropriate when the schema already documents the parameter well.

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 tool's purpose: 'Fetch a single work item by id' with a specific resource and action. It also enumerates the fields returned, distinguishing it from list tools like query_work_items. The verb 'Fetch' and resource 'work item' are explicit.

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 description implies usage (fetch by id) but doesn't explicitly state when to prefer this over alternatives. The parameter description 'from query_work_items' hints at a workflow, but the description itself lacks explicit when-to-use or when-not-to-use guidance. There's no mention of exclusions or alternatives.

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

list_branchesList branchesA
Read-onlyIdempotent

List the branches (refs/heads) of a Git repository, with the commit each one points at.

ParametersJSON Schema
NameRequiredDescriptionDefault
repoYesRepository id or name (from list_repositories)
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behaviorebb. The description adds value beyond those by clarifying the scope ('refs/heads') and specifying the return content (the commit each branch points at). No contradiction with the annotations.

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 sentence with no filler. It is front-loaded with the action and resource, and the extra detail about commit pointers is concise and relevant.

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 simple read-only list tool, the description covers the return value at a useful level, and annotations cover side effects and safety. A fully explicit output shape would be nice, but the description is otherwise complete enough for calling the tool correctly.

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 both parameters are already documented. The description does not add parameter-level meaning beyond identifying the repository as the source of branches; this is acceptable given the high schema coverage.

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 ('List'), a clear target resource ('branches (refs/heads)'), and even names the returned info ('commit each one points at'). This distinguishes list_branches from sibling list tools like list_repositories and list_pull_requests without opening their schemas.

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?

There is no guidance on when to use this tool versus alternatives, no mention of prerequisites like first calling list_repositories to obtain project/repo IDs, and no exclusion notes. The intended use is only implied by the tool's name and description.

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

list_buildsList buildsA
Read-onlyIdempotent

List recent builds / pipeline runs in a project, most recent first, with their status and result.

ParametersJSON Schema
NameRequiredDescriptionDefault
topNoMaximum runs to return (1–200, default 20)
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds ordering ('most recent first') and result fields ('status and result'), which is useful but does not disclose pagination behavior, default limits, or what happens when no builds exist. With annotations covering the core behavioral traits, a 3 is appropriate.

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 sentence that is front-loaded with the action and resource, and includes the most important behavioral details (ordering, status, result). No wasted words.

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 simple read-only list tool with full schema coverage and safety annotations, the description is mostly adequate. However, it does not mention pagination, the default 'top' value, or how to interpret the result list, and there is no output schema to fill that gap. An agent could call it correctly, but may not know the response shape or limits.

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 both parameters. The description adds no extra meaning beyond the schema, and the 'top' parameter's default and range are already in the schema. Baseline 3 is correct.

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 states a specific verb ('List') and resource ('recent builds / pipeline runs in a project'), and adds ordering ('most recent first') and included fields ('status and result'). It is clear, though it does not explicitly distinguish itself from sibling tools like get_build or list_pipelines.

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 description implies a read-only listing use case and the schema notes the project parameter, but it does not explicitly say when to use this tool versus alternatives such as get_build or list_pipelines. The context is clear enough for a simple list operation, but no exclusions or alternative routing are provided.

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

list_iterationsList iterations (sprints)A
Read-onlyIdempotent

List a team's iterations (sprints), each with its path and start/finish dates.

ParametersJSON Schema
NameRequiredDescriptionDefault
teamYesTeam id or name (from list_teams)
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is fully covered. The description adds the useful return-shape detail of path and dates, but it does not disclose pagination, ordering, or result-set scope beyond that.

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 action, the resource, and the relevant output fields with no redundancy or filler. Every word earns its place.

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 simple read-only list tool, the description, rich annotations, and fully described required parameters are nearly complete. It names the key return fields despite lacking an output schema, though it leaves minor ambiguity about whether all iterations are returned and whether any ordering is defined.

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 both required parameters are already documented in the schema. The description adds no extra parameter-level semantics, so the baseline 3 is appropriate.

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 and resource: 'List a team's iterations (sprints).' It also states what each result contains (path and start/finish dates), which clearly differentiates it from sibling tools such as list_teams or query_work_items.

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

Usage Guidelines4/5

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

The description gives clear context: use this tool when you need a team's sprint/iteration schedule. It does not explicitly name alternatives, but no sibling tool covers the same resource, and the team-scoped wording is sufficient guidance.

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

list_pipelinesList pipelinesA
Read-onlyIdempotent

List the pipelines defined in a project, with their ids and names. Use a pipeline id with run_pipeline.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4.2/5.0
Behavior4/5

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

The annotations already cover the safety profile (readOnlyHint, idempotentHint, destructiveHint). The description adds value by disclosing that the tool returns ids and names, and by noting the relationship with run_pipeline. This enriches the behavioral context beyond what annotations provide.

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 two sentences with no filler. It front-loads the main action and includes a useful pointer to run_pipeline without unnecessary elaboration.

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 simple list tool with one parameter and no output schema, the description is complete: it states the purpose, the output fields, and the follow-up usage. Minor details like pagination or filtering are not mentioned, but they are not critical for this straightforward operation.

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 coverage is 100% because the only parameter 'project' has a description. The description does not add any parameter-specific details beyond what the schema already provides, so it meets the baseline but does not elevate it.

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 tool lists pipelines in a project, including the specific outputs (ids and names). It also distinguishes the tool by pointing to run_pipeline, making its purpose unambiguous and differentiating it from sibling tools that operate on other resource types.

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

Usage Guidelines4/5

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

The description provides clear context: list pipelines in a project. It also suggests the follow-up action of using the pipeline id with run_pipeline. However, it does not explicitly state when not to use this tool or contrast it with alternatives like list_builds, though the context is sufficient for most agents.

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

list_processesList processesA
Read-onlyIdempotent

List the organization's process templates (Agile, Scrum, CMMI, or inherited) with their ids. Pass one of these ids as the process when creating a project.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the specific types and the downstream use in project creation, but does not disclose any additional behavior such as pagination or response format, which is minor for a simple list operation.

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?

Two sentences with no filler: the first states the action and result, the second explains how to use the output. Information is front-loaded and every word adds value.

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

Completeness5/5

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

For a zero-parameter, read-only list tool with no output schema, the description is fully sufficient. It tells the agent what is returned (templates with ids) and how to use them, covering everything needed to invoke and consume the result.

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

Parameters4/5

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

The tool has zero parameters, and the schema coverage is 100% (vacuously). The description correctly omits parameter details since none exist. With no parameters, the baseline of 4 applies, and no additional parameter explanation is needed.

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 'List' and resource 'process templates', specifies the types (Agile, Scrum, CMMI, or inherited) and states that ids are returned. This clearly differentiates it from sibling list tools like list_projects or list_teams.

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

Usage Guidelines4/5

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

It explains the purpose of the returned ids ('Pass one of these ids as the process when creating a project'), giving clear context on when to use this tool. There are no direct alternatives, so no exclusion is needed, but the usage scenario is clearly implied.

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

list_projectsList projectsA
Read-onlyIdempotent

List the projects in the Azure DevOps organization that pass the allowlist. Returns each project's id, name, state, and whether it is marked protected (readable but never mutated). Start here to discover valid project names.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.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, and destructiveHint=false. The description adds useful behavioral context beyond those annotations by clarifying what 'protected' means ('readable but never mutated') and by stating that only allowlisted projects are returned, which is not implied by the annotations.

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 concise sentences, each earning its place: the first states the action and scope, the second lists the output fields, and the third gives practical usage guidance. The content is front-loaded and there is no filler or repetition of annotation data.

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

Completeness5/5

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

For a zero-parameter, read-only list tool, the description is complete: it states what is returned, the scope, and how to use it as a discovery starting point. The output schema is absent, so listing the returned fields is essential and adequately covered.

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

Parameters4/5

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

The tool has zero parameterswing, so there is nothing meaningful for the description to add beyond the empty input schema. Baseline for 0-parameter tools is 4, and the description contains no ambiguous parameter references or required inputs.

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 names the exact resource ('projects in the Azure DevOps organization') and the specific scope ('that pass the allowlist'), and it lists the returned fields. 'Start here to discover valid project names' also signals the tool's role as the entry point, clearly distinguishing it from singular tools like get_project.

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

Usage Guidelines4/5

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

'Start here to discover valid project names' provides clear guidance on when this tool should be used first. However, it does not explicitly mention alternatives or exclusions, such as using get_project when a single project's details are needed, so it stops short of full when/when-not guidance.

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

list_pull_requestsList pull requestsA
Read-onlyIdempotent

List pull requests in a repository, optionally filtered by status (active by default).

ParametersJSON Schema
NameRequiredDescriptionDefault
repoYesRepository id or name (from list_repositories)
statusNoFilter by PR status; defaults to 'active'
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description does not need to repeat those. It adds value by stating the default status filter ('active by default'), which is behavioral information not in the schema or annotations. This supplements the structured metadata effectively.

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 fluff. It communicates the primary action, optional filter, and default behavior efficiently. Every word earns its place, making it highly concise and well-structured.

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 simple read-only list operation, the description covers the key behavior (listing by repository with an optional status filter) and functional details like the default. It omits pagination or response format, but these are not critical given the tool's simplicity and the safety annotations. Overall, it is complete enough for an agent to call correctly.

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 each parameter. The description reinforces the `status` parameter's default but does not add new meaning beyond what the schema provides for repo and project. The baseline of 3 is appropriate when the schema carries the full parameter burden.

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 action ('List') and the resource ('pull requests in a repository'), and specifies an optional filter on status with a default. This distinguishes it from sibling get_pull_request (which fetches a single PR) and other list tools by naming the exact scope.

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 description implies when to use it (to list PRs) but does not explicitly contrast with siblings like get_pull_request or mention when NOT to use it. There is no guidance on selecting between this and get_pull_request for a single item, though the filter hint ('active by default') provides some context.

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

list_repositoriesList repositoriesA
Read-onlyIdempotent

List the Git repositories in a project, with their ids, names, and default branches.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is known. The description adds useful value beyond those annotations by specifying the returned fields (ids, names, default branches), which matters here because no output schema is provided.

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 sentence with no filler. The verb and resource are front-loaded, and the return-field list is given compactly after the main action. Every part earns its place.

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

Completeness5/5

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

For a one-parameter, read-only listing tool with strong annotations and a fully documented schema, the description is complete enough for an agent to select and invoke it correctly. It states the project scope, required input, and what the result contains, and no output schema is needed.

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?

The input schema already documents the single required parameter at 100% coverage, including the allowlist constraint. The description repeats the project scoping but does not add new parameter detail beyond what the schema already provides, so the baseline 3 is appropriate.

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 states a specific verb ('List'), a specific resource ('Git repositories'), and a scoping constraint ('in a project'), and tells the agent what fields will be returned (ids, names, default branches). This is clearly distinct from sibling tools like list_projects or list_branches.

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

Usage Guidelines4/5

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

The description gives clear context: use this tool when you need to enumerate Git repositories within a particular project. It does not explicitly name alternatives or exclusions, but there is no ambiguity about the intended use case given the required project parameter and the sibling tool names.

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

list_team_membersList team membersA
Read-onlyIdempotent

List the members (identities: display name and unique name) of a specific team within a project.

ParametersJSON Schema
NameRequiredDescriptionDefault
teamYesTeam id or name (from list_teams)
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds value by specifying the output shape ('display name and unique name') and the scoping constraint ('specific team within a project'). This goes beyond the annotations by clarifying what the agent will receive and the required context, without contradicting any annotation.

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, well-formed sentence that front-loads the action ('List the members') and immediately provides the key detail (identities: display name and unique name). There is no filler or repetition. Every word contributes to understanding the tool's purpose.

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

Completeness5/5

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

For a simple list operation with only two parameters and no output schema, the description is complete. It states what is returned (display name and unique name), the required scoping (team within a project), and the annotations cover idempotency and read-only behavior. An agent has all necessary information to invoke the tool correctly without further clarification.

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%, and both parameters have detailed descriptions in the schema itself: 'team' is 'Team id or name (from list_teams)' and 'project' is 'Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set).' The tool description adds no new parameter-specific meaning beyond what the schema already provides, so the baseline score of 3 is appropriate. The description's mention of 'specific team' is redundant with the schema.

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 'List' and clearly identifies the resource as 'members (identities: display name and unique name) of a specific team within a project.' This distinguishes it from sibling tools like list_teams or list_projects, which operate on different resources. The purpose is unambiguous and immediately actionable.

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

Usage Guidelines4/5

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

The description states the tool lists members for a specific team in a project, implying the user must know the team and project identifiers. It does not explicitly exclude alternatives, but the context is clear: to get team members, you need this tool, whereas list_teams would be used to fetch teams. There is no explicit 'when not to use,' but the purpose is specific enough that an agent can infer the correct usage scenario.

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

list_teamsList teamsA
Read-onlyIdempotent

List the teams defined in a project, with their ids and names. Use a team id/name with the team-scoped tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds value by specifying the output format (ids and names), which is beyond the annotations. It doesn't contradict any annotations and provides useful behavioral context about the returned data.

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 two short sentences, front-loading the purpose and adding a practical usage note. No wasted words. It is efficiently structured and easy to parse.

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

Completeness5/5

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

For a simple list tool with one well-documented parameter, no output schema, and annotations covering safety, the description is complete. It states the output content and how to use it, which is all an agent needs to invoke it correctly.

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?

The single parameter 'project' is fully documented in the schema with a clear description including the allowlist constraint. Since schema coverage is 100%, the description need not add parameter details. It doesn't, but the baseline of 3 is appropriate because the schema handles the semantics.

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 'List', the resource 'teams', and the scope 'in a project'. It also specifies the output contains 'ids and names', distinguishing it from other list tools like list_projects or list_repositories. The purpose is unambiguous.

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

Usage Guidelines4/5

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

The description gives implicit guidance: use this tool to obtain team ids/names for use with 'team-scoped tools'. It doesn't explicitly state when not to use it or name alternatives, but the context of sibling tools makes the usage clear. The instruction to use the output with other tools adds practical guidance.

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

query_work_itemsQuery work items (WIQL)A
Read-onlyIdempotent

Run a Work Item Query Language (WIQL) query against a project and return the matching work-item ids (fetch fields with get_work_item). Example: SELECT [System.Id] FROM WorkItems WHERE [System.State] = 'Active'.

ParametersJSON Schema
NameRequiredDescriptionDefault
wiqlYesA WIQL query string, e.g. SELECT [System.Id] FROM WorkItems WHERE [System.WorkItemType] = 'Bug'
projectYesProject name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already convey readOnlyHint, idempotent, openWorld, and non-destructive behavior. The description adds useful behavior beyond annotations by specifying that the tool returns IDs only rather than full work-item data, which is helpful for setting expectations and invoking get_work_item afterward.

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 compact and front-loaded: one clear sentence states what the tool does, then adds a terse but informative WIQL example. Every sentence earns its place, and there is no padding or repetition of annotation content.

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

Completeness5/5

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

For a two-parameter tool with rich annotations and a complete input schema, the description covers what the tool returns, the required project context, points to get_work_item for follow-up data, and includes an example query. This is sufficient 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.

Parameters3/5

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

Schema description coverage is 100%, with both parameters already describing 'wiql' and 'project'. The description's example WIQL syntax adds a useful illustration but does not materially add meaning beyond the schema, so it meets the baseline without exceeding it.

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-resource pair ('Run a WIQL query against a project') and states a precise outcome ('return the matching work-item ids'). It also names the natural sibling path via 'fetch fields with get_work_item', distinguishing this from the work-item detail retrieval tool.

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

Usage Guidelines4/5

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

The description clearly communicates the query-oriented use case and directs the agent to get_work_item for fetching fields. It does not spell out explicit when-not or exclusions, but the context is strong enough to route the agent to the appropriate alternative.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 13 tool updatesv0.2.3
    • Changedget_build2 fields changed
      • addedInput schema / properties / buildId / description
        Added value: +"Build / run id (from list_builds)"
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
    • Changedget_project1 field changed
      • changedInput schema / properties / project / description
        Previous value: -"Project name or id"New value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
    • Changedget_pull_request3 fields changed
      • addedInput schema / properties / id / description
        Added value: +"Pull request id (from list_pull_requests)"
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
      • addedInput schema / properties / repo / description
        Added value: +"Repository id or name (from list_repositories)"
    • Changedget_work_item1 field changed
      • changedInput schema / properties / id / description
        Previous value: -"Work item id"New value: +"Work item id (from query_work_items)"
    • Changedlist_branches2 fields changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
      • changedInput schema / properties / repo / description
        Previous value: -"Repository id or name"New value: +"Repository id or name (from list_repositories)"
    • Changedlist_builds2 fields changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
      • changedInput schema / properties / top / description
        Previous value: -"Default 20"New value: +"Maximum runs to return (1–200, default 20)"
    • Changedlist_iterations2 fields changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
      • addedInput schema / properties / team / description
        Added value: +"Team id or name (from list_teams)"
    • Changedlist_pipelines1 field changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
    • Changedlist_pull_requests3 fields changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
      • addedInput schema / properties / repo / description
        Added value: +"Repository id or name (from list_repositories)"
      • changedInput schema / properties / status / description
        Previous value: -"Default active"New value: +"Filter by PR status; defaults to 'active'"
    • Changedlist_repositories1 field changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
    • Changedlist_team_members2 fields changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
      • changedInput schema / properties / team / description
        Previous value: -"Team id or name"New value: +"Team id or name (from list_teams)"
    • Changedlist_teams1 field changed
      • changedInput schema / properties / project / description
        Previous value: -"Project name or id"New value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
    • Changedquery_work_items2 fields changed
      • addedInput schema / properties / project / description
        Added value: +"Project name or id (must be within AZDO_PROJECT_ALLOWLIST when that is set)"
      • changedInput schema / properties / wiql / description
        Previous value: -"A WIQL query string"New value: +"A WIQL query string, e.g. SELECT [System.Id] FROM WorkItems WHERE [System.WorkItemType] = 'Bug'"
  2. 13 tool updatesv0.2.2
    • Changedget_build3 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / buildId / maximum
        Added value: +9007199254740991
      • addedInput schema / properties / buildId / minimum
        Added value: +-9007199254740991
    • Changedget_project1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedget_pull_request3 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / id / maximum
        Added value: +9007199254740991
      • addedInput schema / properties / id / minimum
        Added value: +-9007199254740991
    • Changedget_work_item3 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / id / maximum
        Added value: +9007199254740991
      • addedInput schema / properties / id / minimum
        Added value: +-9007199254740991
    • Changedlist_branches1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlist_builds1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlist_iterations1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlist_pipelines1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlist_pull_requests1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlist_repositories1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlist_team_members1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlist_teams1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedquery_work_items1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
  3. 15 tool updatesv0.1.1
    • First observedget_build
    • First observedget_project
    • First observedget_pull_request
    • First observedget_work_item
    • First observedlist_branches
    • First observedlist_builds
    • First observedlist_iterations
    • First observedlist_pipelines
    • First observedlist_processes
    • First observedlist_projects
    • First observedlist_pull_requests
    • First observedlist_repositories
    • First observedlist_team_members
    • First observedlist_teams
    • First observedquery_work_items

TDQS

A4/5.0

Scored across 15 tools

Disambiguation5/5

Each tool targets a distinct Azure DevOps resource or action: projects, teams, team members, processes, work items, iterations, repositories, branches, pull requests, pipelines, and builds. list_* and get_* pairs are clearly complementary rather than overlapping, and query_work_items vs get_work_item is a clear search-then-fetch workflow.

Naming Consistency5/5

Tool names follow a consistent list_<resource> and get_<resource> snake_case convention, with query_work_items as the only special-case verb. No mixed casing or vague verbs like 'process' or 'run' appear, making the naming predictable and easy to navigate.

Tool Count5/5

Fifteen tools is at the upper edge of the well-scoped range but still appropriate: each tool covers a meaningful read operation on a distinct Azure DevOps entity, and none feel redundant. The count reflects a focused read-only browsing surface rather than an unwieldy grab bag.

Completeness2/5

The set covers read-only browsing across major Azure DevOps entities, but it has no create, update, delete, or run operations at all. This is especially problematic because list_processes references creating a project and list_pipelines references run_pipeline, yet neither create_project nor run_pipeline is exposed, leaving agents with dead ends and incomplete workflows.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers