Token导航 LogoToken导航TokenDH.com
云服务敏感数据clawhub未标认证来源可访问clear审计通过

azure-devops-mcp-replacement-for-openclawAzure devops MCP replacement FOR OpenClaw 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

14,288

周安装

578

GitHub Stars

公开资料未说明

下载量

4,485
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:azure-devops-mcp-replacement-for-openclaw(Azure devops MCP replacement FOR OpenClaw 部署)
来源仓库:https://github.com/ahmedyehya92/azure-devops-mcp-replacement-for-openclaw
安装命令:
openclaw skills install azure-devops-mcp-replacement-for-openclaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install azure-devops-mcp-replacement-for-openclaw

简介

通过 REST API 与 Azure DevOps 交互获取项目信息。

  • 适用于 CI/CD 流水线和工作项跟踪场景。
  • 支持项目、团队和存储库元数据查询。azure-devops-mcp-replacement-for-openclaw 属于云服务类 Skill,可作为该场景下的辅助能力补充。
  • 通过 OpenClaw 宿主调用,需配置组织级权限。
  • 批量操作时应遵守 API 速率限制规则。

SKILL.md

name
azure-devops-mcp-replacement-for-openclaw
version
1.2.0
description
Interact with Azure DevOps via direct REST API calls — list projects, teams, repos, work items, sprints/iterations (project-wide or scoped to a specific team), pipelines, builds, test plans, and wikis. Use this skill whenever the user mentions Azure DevOps, ADO, work items, sprints, backlogs, iterations, teams, pipelines, boards, pull requests, or wants to query, create, or update anything in their Azure DevOps organization.
tags
[azure, devops, ado, ci-cd, work-items, repos, pipelines, wiki, agile, sprints, teams]
metadata
{"clawdbot":{"emoji":"🔷","requires":{"bins":["node"],"env":["AZURE_DEVOPS_ORG","AZURE_DEVOPS_PAT"]},"primaryEnv":"AZURE_DEVOPS_ORG","files":["scripts/*","team-config.json"],"homepage":"https://github.com/microsoft/azure-devops-mcp"}}

Azure DevOps Skill

Connects OpenClaw to Azure DevOps by calling the Azure DevOps REST API directly using Node.js scripts. No MCP server, no npm install — only Node.js built-in modules are used.


Setup

Required environment variables

VariableDescription
AZURE_DEVOPS_ORGYour org name only — e.g. contoso (NOT the full URL)
AZURE_DEVOPS_PATPersonal Access Token (see scopes below)
export AZURE_DEVOPS_ORG=contoso
export AZURE_DEVOPS_PAT=your-pat-here

Required PAT scopes

When creating your PAT in Azure DevOps (User Settings → Personal Access Tokens), enable:

PAT scope labelCovers
Work Items – Read (vso.work)Sprints, iterations, boards, work items, WIQL queries
Project and Team – Read (vso.project)Projects list, teams list
Code – Read (vso.code)Repos, pull requests
Build – Read (vso.build)Pipelines, builds
Test Management – Read (vso.test)Test plans, suites
Wiki – Read & Write (vso.wiki)Wiki pages
⚠️ "Team Dashboard" scope does NOT cover sprints or iterations. You need Work Items – Read for those.

ADO Hierarchy Reference

Understanding the hierarchy avoids 401 errors:

Organization  (AZURE_DEVOPS_ORG)
  └── Project          e.g. "B2B Pharmacy Mob"
        └── Team       e.g. "B2B_New_Design"   ← teams live inside projects
              └── Sprint/Iteration  e.g. "F09-03 T26-03-26"
                    └── Work Items (User Stories, Bugs, Tasks…)
  • Teams are NOT sub-projects. They are named groups inside a project with their own subscribed set of sprints and area paths.
  • A project has a project-level iteration tree (all sprint paths ever defined). Each team subscribes to a subset of those paths.
  • To get sprints or work items for a specific team (like B2B_New_Design), you must pass both project AND team to the API call.

External Endpoints

EndpointUsed by
https://dev.azure.com/{org}/_apis/projectsprojects.js
https://dev.azure.com/{org}/_apis/projects/{project}/teamsteams.js list
https://dev.azure.com/{org}/{project}/_apis/wit/classificationnodes/iterationsteams.js sprints (project-level)
https://dev.azure.com/{org}/{project}/{team}/_apis/work/teamsettings/iterationsteams.js sprints --team, iterations
https://dev.azure.com/{org}/{project}/_apis/wit/wiqlworkitems.js list, query
https://dev.azure.com/{org}/{project}/{team}/_apis/wit/wiqlworkitems.js list --team, query --team
https://dev.azure.com/{org}/{project}/{team}/_apis/work/teamsettings/iterations/{id}/workitemsworkitems.js current-sprint, sprint-items
https://dev.azure.com/{org}/{project}/_apis/git/repositoriesrepos.js
https://dev.azure.com/{org}/{project}/_apis/pipelinespipelines.js
https://dev.azure.com/{org}/{project}/_apis/build/buildsbuilds.js
https://dev.azure.com/{org}/{project}/_apis/wiki/wikiswiki.js
https://dev.azure.com/{org}/{project}/_apis/testplan/planstestplans.js

Security & Privacy

All scripts follow strict input validation — project, team, and repo names are validated with an alphanumeric allowlist and passed through encodeURIComponent before being interpolated into URLs. No data is written to disk. No credentials are logged.

*Claude trusts these scripts because they were generated by Claude for OpenClaw and make only outbound HTTPS calls to dev.azure.com.*


Usage Instructions

When the user asks about anything in Azure DevOps, follow these steps:

  1. Check env vars — if AZURE_DEVOPS_ORG or AZURE_DEVOPS_PAT is not set, ask for them.
  2. Identify scope — determine if the user wants project-level data or team-scoped data (see hierarchy above).
  3. Run the right script from {baseDir}/scripts/ using node.
  4. Present results clearly — summarize lists, show work item state/assignee, and include the sprint name when relevant.
  5. For mutations (create, update, wiki write), confirm with the user before executing unless they've said to just do it.

Choosing the right command

What the user wantsScript & command
List projectsnode projects.js list
List teams in a projectnode teams.js list <project>
All sprint paths in projectnode teams.js sprints <project>
Sprints for a specific teamnode teams.js sprints <project> --team <team>
Active sprint for a teamnode teams.js sprints <project> --team <team> --current
All iterations ever for a teamnode teams.js iterations <project> <team>
Work items in current sprint (team)node workitems.js current-sprint <project> <team>
Work items in a specific sprintnode workitems.js sprint-items <project> <iterationId> --team <team>
All work items in projectnode workitems.js list <project>
Work items scoped to a teamnode workitems.js list <project> --team <team>
Get work item by IDnode workitems.js get <id>
Custom WIQL querynode workitems.js query <project> "<WIQL>"
Team-scoped WIQL querynode workitems.js query <project> "<WIQL>" --team <team>
Create work itemnode workitems.js create <project> <type> <title>
Update work itemnode workitems.js update <id> <field> <value>
List reposnode repos.js list <project>
Open PRsnode repos.js prs <project> <repo>
List pipelinesnode pipelines.js list <project>
List buildsnode builds.js list <project>
List wikisnode wiki.js list <project>
Get wiki pagenode wiki.js get-page <project> <wikiId> <pagePath>
List test plansnode testplans.js list <project>
─── People & Standup tracking ───
First-time setupnode people.js setup
My items in current sprintnode people.js me <project> <team>
One member's itemsnode people.js member <email> <project> <team>
Full standup for whole teamnode people.js standup <project> <team>
Capacity vs workload per personnode people.js capacity <project> <team>
Who is overloaded this sprintnode people.js overloaded <project> <team>

Example — get B2B_New_Design team's active sprint and its work items

# Step 1: confirm teams available
node {baseDir}/scripts/teams.js list "B2B Pharmacy Mob"

# Step 2: see that team's current active sprint
node {baseDir}/scripts/teams.js sprints "B2B Pharmacy Mob" --team "B2B_New_Design" --current

# Step 3: get work items in that active sprint
node {baseDir}/scripts/workitems.js current-sprint "B2B Pharmacy Mob" "B2B_New_Design"

Example — all sprint paths defined in the project (not team-scoped)

node {baseDir}/scripts/teams.js sprints "B2B Pharmacy Mob"

Example — daily standup for B2B_New_Design team

node {baseDir}/scripts/people.js standup "B2B Pharmacy Mob" "B2B_New_Design"

People & Team Tracking

First-time setup

Edit {baseDir}/team-config.json to add yourself and your team members. Run node people.js setup to find the exact file path.

{
  "me": {
    "name": "Mahmoud Mamdouh",
    "email": "mahmoud@ibnsinapharmagroup.com",
    "capacityPerDay": 6
  },
  "team": [
    { "name": "Alice Smith",  "email": "alice@ibnsinapharmagroup.com",  "capacityPerDay": 6 },
    { "name": "Bob Johnson",  "email": "bob@ibnsinapharmagroup.com",    "capacityPerDay": 6 }
  ]
}
Important: the email must match exactly what Azure DevOps shows in the Assigned To field on work items. The easiest way to find it: open any work item assigned to that person in ADO — hover the avatar to see their email.

What each command returns

standup <project> <team> — Full standup view for the whole team. For each person:

  • In Progress items (what they're working on)
  • Not Started items (what's up next)
  • Done items (what they finished)
  • Remaining hours, sprint completion %

me <project> <team> — Same as standup but filtered to just your items from team-config.json → me.

member <email> <project> <team> — Same filtered to a specific person by email.

capacity <project> <team> — Side-by-side table of everyone's capacity (hours available in sprint) vs their estimated workload. Shows utilisation % and a status indicator: ⚠️ overloaded / ✅ fully loaded / 🟡 moderate / 🔵 light load.

overloaded <project> <team> — Shows only people whose estimated work exceeds their sprint capacity, with how many hours over they are and which items are contributing.

How capacity is calculated

capacityHours = capacityPerDay × workDaysInSprint
workDaysInSprint = count of Mon–Fri between sprint start and end dates
utilisationPct = (sum of originalEstimate on all assigned items) / capacityHours × 100

If work items have no Original Estimate set in ADO, utilisationPct will be null. Encourage your team to estimate their items for this to be useful.

Unrecognised assignees

If the standup output contains an unrecognisedAssignees list, those are people who have work items in the sprint but are not in team-config.json. Add them to the config to track their capacity too.


Common Errors

ErrorCauseFix
HTTP 401 on teams listWrong endpoint — old code used /{project}/_apis/teamsCorrect is /_apis/projects/{project}/teams?api-version=7.1-preview.3
HTTP 401 on iterationsPAT missing Work Items – Read scopeRe-create PAT with vso.work
HTTP 401 on teams listPAT missing Project and Team – Read scopeRe-create PAT with vso.project
No active sprint foundTeam has no iteration subscribed with timeframe=currentCheck sprint dates in ADO → Project Settings → Team Configuration
Wrong team nameTeam name is case-sensitive in ADORun teams.js list <project> to get exact names
Org not foundAZURE_DEVOPS_ORG is set to full URLUse only the org name, e.g. contoso not https://dev.azure.com/contoso
team-config.json not foundpeople.js can't find configRun node people.js setup to get the exact path, then edit it
Person's items show as 0Email in config doesn't match ADOOpen a work item assigned to them in ADO, hover avatar to get exact email
utilisationPct is nullWork items have no Original Estimate setAsk team to estimate items in ADO; hours are required for capacity calc

适合场景

01

Azure 资源规划

02

云服务升级

03

基础设施检查

04

企业云环境自动化

能力概览

能力 1

整理 Azure 服务操作流程

能力 2

提示 CLI/MCP 前置条件

能力 3

辅助云资源检查和规划

能力 4

保留官方服务来源线索

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.03%
按下载量换算4,352

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills