AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Azure Devops Skills

mcp-microsoft-azure-devops-skills · by microsoft

Sample skills and prompt patterns demonstrating how to use the Azure DevOps MCP Server with GitHub Copilot and agent-based workflows

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add mcp-microsoft-azure-devops-skills

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-microsoft-azure-devops-skills)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
24d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Azure Devops Skills? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Azure DevOps Skills (Examples)

This repository contains examples of reusable "skills" for working with Azure DevOps from AI coding assistants (for example, GitHub Copilot in VS Code). Each skill is a focused bundle of instructions and, optionally, references or scripts that teach the model how to perform a specific Azure DevOps task in a consistent, repeatable way.

Skills in this repo are designed to:

  • Standardize how common Azure DevOps workflows are executed (iterations, boards, summaries, etc.)
  • Reduce repeated explanation of organization/project-specific conventions
  • Provide clear, tool-based workflows using the Azure DevOps MCP server

📁 Repository Layout

  • skills/ – Individual skills, one folder per skill
  • .github/skills//SKILL.md – Primary instructions and metadata for each skill
  • template/ – A starter template for creating new skills
  • .github/ – GitHub configuration and skill metadata
  • .vscode/ – VS Code workspace and MCP configuration

🧩 Available Skills

> This project is very new and limited in the number of skills defined. We expect to build out more skills over time.

This repo currently includes skills focused on Azure DevOps work item and iteration management:

  • boards-backlog-summary – Gets the team's Requirements-level backlog (Product Backlog Items and Bugs) filtered to Active items assigned to the current user, showing parent/child hierarchy sorted by priority
  • boards-my-work – Lists the user's active work across Azure DevOps boards
  • boards-team-active-work – Gets active work items for a team showing dependencies, priorities, and sprint assignments with parent/child hierarchy
  • boards-work-item-summary – Summarizes a single work item (plus links and comments)
  • pipelines-build-summary – Lists, inspects, and troubleshoots pipeline builds; shows recent builds, drills into status/results, displays logs for failed steps, and lists associated changes
  • security-alert-review – Lists and reviews Advanced Security alerts (dependency vulnerabilities, secret exposure, code scanning findings) with filtering by severity, state, and alert type
  • work-iterations – Lists, creates, and assigns iterations for projects and teams

Each skill has its own SKILL.md under .github/skills// describing:

  • When the skill should be used
  • Which Azure DevOps MCP tools it can call
  • The exact workflows and edge cases it should handle

💻 Using These Skills in VS Code

These skills are intended to be used with GitHub Copilot in VS Code and an Azure DevOps Model Context Protocol (MCP) server.

At a high level:

  1. Ensure you have the Azure DevOps MCP server configured and authenticated. See https://github.com/microsoft/azure-devops-mcp for details.
  2. Open this repository in VS Code.
  3. Make sure your Copilot / MCP configuration includes this workspace so SKILL files can be loaded.
  4. In chat with Copilot, describe what you want to do (for example, "list iterations for project Contoso" or "summarize work item 123 for project Foo").
  5. Copilot will select the appropriate skill and call the underlying Azure DevOps tools according to the instructions in SKILL.md.

🛠️ Creating a New Skill

To add a new Azure DevOps-focused skill:

  1. Start from the template
  • Copy the contents of template/SKILL.md into a new file under .github/skills//SKILL.md.
  1. Fill out the frontmatter
  • name: a short, unique identifier for the skill (lowercase, hyphen-separated).
  • description: a clear explanation of what the skill does and when it should be used.
  1. Define when to use the skill
  • Describe the kinds of user requests that should trigger this skill (for example, "iteration planning", "board queries", "build summaries").
  1. Specify tools and workflows
  • List the Azure DevOps MCP tools the skill may call.
  • For each common user task, describe which tool(s) to call, in what order, and how to present the results.
  • Be explicit about what not to do (for example, "do not create iterations when the user only asked to list them").
  1. Keep instructions concise and unambiguous
  • Prefer numbered workflows and clear guards over prose.
  • Call out edge cases (missing project/team, empty results, error conditions) and how the model should respond.

Use the existing skills in .github/skills/ as concrete references for structure, tone, and level of detail.


🤝 Contributing

Contributions are welcome. When adding or updating a skill:

  • Keep instructions focused on Azure DevOps workflows and the MCP tools actually available.
  • Ensure behavior is deterministic and guarded (for example, ask once for missing project/team, then fall back to list APIs).
  • Favor small, composable skills over large, monolithic ones.

Before submitting changes:

  • Validate that SKILL instructions are internally consistent and do not conflict with existing tools or skills.
  • Test the workflows manually in VS Code with Copilot and the Azure DevOps MCP server, where possible.

📜 License

See LICENSE.md for licensing terms.

If your organization plans to extend or adapt these skills, consider maintaining a separate, internal fork with any org-specific conventions (project naming, team structures, field customizations) captured as additional skills.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.