azure-devops-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AZURE_DEVOPS_ORG | Yes | Name of the organization (e.g., movii) | |
| AZURE_DEVOPS_PAT | Yes | Personal Access Token for Azure DevOps | |
| AZURE_ASSIGNED_TO | No | (Optional) User for query_my_bugs tool (default defined in src/config.js) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| query_my_bugsA | Lista los bugs activos asignados al usuario configurado en ASSIGNED_TO |
| get_work_itemA | Obtiene un work item de Azure Boards por ID |
| query_work_itemsB | Consulta work items usando WIQL |
| get_repositoriesB | Lista todos los repositorios del proyecto |
| search_codeB | Busca texto en los archivos de un repositorio usando Azure DevOps Code Search |
| get_file_contentC | Lee el contenido de un archivo en un repositorio |
| create_branchC | Crea una rama nueva desde otra existente |
| create_pull_requestB | Crea un Pull Request entre dos ramas |
| push_commitC | Hace commit de un cambio en un archivo dentro de una rama existente |
| get_pipeline_runsB | Obtiene ejecuciones recientes de un pipeline |
| update_work_item_stateA | Actualiza el estado de un work item en Azure Boards |
| create_work_itemC | Crea un work item (User Story, Task, Bug, etc.) en Azure Boards |
| get_pull_requestB | Obtiene el estado actual de un Pull Request |
| get_pipelinesB | Lista todos los pipelines del proyecto |
| notify_task_completedC | Hook de cierre: persiste reporte y finaliza la tarea |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 15 tools
Most tools target distinct resources/actions. However, query_my_bugs overlaps with query_work_items as a specific case, potentially causing agent confusion.
Uses verb_noun pattern consistently except for notify_task_completed (verb_noun_past) and mixing get/query verbs for similar operations.
15 tools cover the major Azure DevOps domains without being excessive. Each tool serves a clear purpose within git, work items, pipelines, and searching.
Missing update/delete for pull requests and branches, and no delete for work items. The surface covers core workflows but has notable gaps that may force workarounds.