npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@slorenzot/mcp-azure

v2.3.5

Published

Servidor MCP para Azure DevOps

Readme

@slorenzot/mcp-azure

Servidor MCP (Model Context Protocol) para Azure DevOps. Permite interactuar con Work Items, sprints, áreas, comentarios y adjuntos desde cualquier cliente MCP compatible.

Instalación

npm install -g @slorenzot/mcp-azure

O usar directamente con npx:

npx @slorenzot/mcp-azure

Configuración

Variables de Entorno

El servidor se configura automáticamente usando las siguientes variables de entorno:

| Variable | Alternativa | Descripción | Requerido | |----------|-------------|-------------|-----------| | AZURE_DEVOPS_ORG | ADO_ORG | URL de la organización (ej: https://dev.azure.com/mi-org) | Sí | | AZURE_DEVOPS_PAT | ADO_PAT | Personal Access Token | Sí | | AZURE_DEVOPS_PROJECT | ADO_PROJECT | Nombre del proyecto | No |

Configuración en Claude Desktop

Agrega la siguiente configuración en tu archivo claude_desktop_config.json:

{
  "mcpServers": {
    "azure-devops": {
      "command": "npx",
      "args": ["-y", "@slorenzot/mcp-azure"],
      "env": {
        "AZURE_DEVOPS_ORG": "https://dev.azure.com/tu-organizacion",
        "AZURE_DEVOPS_PAT": "tu-pat-aqui",
        "AZURE_DEVOPS_PROJECT": "tu-proyecto"
      }
    }
  }
}

Obtener un Personal Access Token (PAT)

  1. Ve a tu organización de Azure DevOps
  2. Haz clic en tu avatar (esquina superior derecha)
  3. Selecciona Personal Access Tokens
  4. Crea un nuevo token con los siguientes permisos:
    • Work Items: Read & Write
    • Project and Team: Read (opcional)

Herramientas Disponibles

Autenticación

| Herramienta | Descripción | |-------------|-------------| | ado_configure | Configura la conexión con organización, proyecto y PAT |

Work Items

| Herramienta | Descripción | |-------------|-------------| | ado_get_work_item | Obtiene un Work Item por su ID | | ado_create_work_item | Crea un nuevo Work Item (User Story, Bug, Task, etc.) | | ado_update_work_item | Actualiza un Work Item existente | | ado_get_work_item_type_fields | Obtiene los campos disponibles/requeridos de un tipo |

Consultas

| Herramienta | Descripción | |-------------|-------------| | ado_query_sprint | Consulta Work Items de un sprint específico | | ado_query_area | Consulta Work Items de un área específica | | ado_query_wiql | Ejecuta una consulta WIQL personalizada |

Estructura del Proyecto

| Herramienta | Descripción | |-------------|-------------| | ado_list_iterations | Lista las iteraciones/sprints del proyecto | | ado_list_areas | Lista las áreas del proyecto |

Comentarios y Discusiones

| Herramienta | Descripción | |-------------|-------------| | ado_add_comment | Agrega un comentario a un Work Item (soporta Markdown) | | ado_get_comments | Obtiene los comentarios de un Work Item |

Adjuntos

| Herramienta | Descripción | |-------------|-------------| | ado_upload_attachment | Sube un archivo y devuelve la URL del adjunto | | ado_add_attachment | Agrega un adjunto a un Work Item | | ado_get_attachments | Lista los adjuntos de un Work Item |

Ejemplos de Uso

Crear una User Story

{
  "title": "Implementar login con OAuth",
  "type": "User Story",
  "description": "Como usuario quiero poder iniciar sesión con mi cuenta de Google",
  "areaPath": "MiProyecto\\Backend",
  "iterationPath": "MiProyecto\\Sprint 5",
  "fields": {
    "Custom.OKR": "Seguridad",
    "Custom.Prioridad": "Alta"
  }
}

Consulta WIQL Personalizada

{
  "wiql": "SELECT [System.Id], [System.Title] FROM WorkItems WHERE [System.State] = 'Active' AND [System.AssignedTo] = @Me ORDER BY [System.CreatedDate] DESC",
  "getDetails": true
}

Agregar Comentario con Markdown

{
  "id": 12345,
  "comment": "## Análisis completado\n\n- Revisado el código\n- Identificados 3 issues\n\n**Próximo paso:** Corregir validaciones"
}

Subir y Adjuntar Archivo

{
  "workItemId": 12345,
  "filePath": "/ruta/al/archivo.pdf",
  "comment": "Documento de especificaciones"
}

Prompts Disponibles

El servidor incluye prompts predefinidos para facilitar tareas comunes:

| Prompt | Descripción | |--------|-------------| | connect | Guía para conectarse a Azure DevOps | | analyze_sprint | Analiza el estado de un sprint | | create_user_story | Crea una User Story estructurada | | daily_standup | Genera un reporte de standup diario | | plan_sprint | Ayuda a planificar un sprint | | bulk_update | Actualiza múltiples Work Items | | project_report | Genera un reporte del proyecto | | report_bug | Crea un Bug report estructurado |

Recursos

| Recurso | URI | Descripción | |---------|-----|-------------| | Estado de conexión | ado://connection/status | Información del estado de conexión actual |

Desarrollo

Requisitos

  • Node.js 18+
  • npm o yarn

Instalación local

git clone https://github.com/slorenzot/mcp-azure.git
cd mcp-azure
npm install
npm run build

Scripts disponibles

npm run build    # Compila TypeScript
npm run start    # Inicia el servidor
npm run dev      # Modo desarrollo con watch

Licencia

MIT

Autor

Soulberto Lorenzo - @slorenzot