mcp-azure-devops: Skill for Claude Code

.claude/skills/mcp-suite-maintenance/SKILL.md

mcp-suite-maintenance is a skill for Claude Code from dockndevai/mcp-azure-devops. It costs 112 tokens per session (1,650 once invoked), scanned A, a copy of mcp-suite-maintenance, MIT.

A maintenance guide for a group of TypeScript MCP servers that connect coding agents to systems such as Kubernetes, Kafka, Azure, and databases. It defines shared rules for permissions, configuration, testing, and releases.

In plain words
What is it for?
Use it when adding or changing a server tool, updating dependencies, changing security rules, preparing a release, or publishing a package to npm.
Why use it?
It helps keep changes consistent across related servers and prevents tools from exposing more access than their configured security level allows.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is dockndevai/mcp-azure-devops's own configuration. It tells Claude Code how to work on mcp-azure-devops itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mcp-azure-devops configures →

Reuse

Borrowing it

Nothing to install: this file belongs to dockndevai/mcp-azure-devops. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/dockndevai/mcp-azure-devops/main/.claude/skills/mcp-suite-maintenance/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/dockndevai/mcp-azure-devops

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-suite-maintenance

README.md
[![agentmods](https://agentmods.dev/badge/skills/dockndevai/mcp-azure-devops/mcp-suite-maintenance/github.svg)](https://agentmods.dev/skills/dockndevai/mcp-azure-devops/mcp-suite-maintenance)
Your own site
<a href="https://agentmods.dev/skills/dockndevai/mcp-azure-devops/mcp-suite-maintenance"><img src="https://agentmods.dev/badge/skills/dockndevai/mcp-azure-devops/mcp-suite-maintenance/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-suite-maintenance

Your own site · 80×15
<a href="https://agentmods.dev/skills/dockndevai/mcp-azure-devops/mcp-suite-maintenance"><img src="https://agentmods.dev/badge/skills/dockndevai/mcp-azure-devops/mcp-suite-maintenance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,650 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00112 $0.01650
Opus 5 $0.00056 $0.00825
Sonnet 5 $0.00022 $0.00330
Haiku 4.5 $0.00011 $0.00165

Measured 10d ago against content hash f5e81688a5ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

mcp-suite-maintenance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to mcp-suite-maintenance — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/mcp-suite-maintenance/SKILL.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Maintaining the MCP server suite

These six TypeScript MCP servers share one architecture and one security philosophy: safe by default, least privilege, never leak secrets. This skill captures the invariants and the routine tasks so changes stay consistent and safe.

Shared architecture (every repo)

src/
  index.ts        # stdio entrypoint: load config → build server → connect
  server.ts       # registers ONLY tools whose capability ≤ access mode
  config.ts       # env → typed config (connection + security)
  security.ts     # PURE policy engine (SecurityPolicy). No I/O. Unit-tested.
  <domain>/client.ts  # thin wrapper over the real SDK/REST API
  tools/{read,write,admin}.ts  # tool defs tagged with a capability
test/             # vitest — always includes security.test.ts
  • Capabilities: every tool declares capability: "read" | "write" | "admin".
  • Access modes: read-only (0) → read-write (1) → admin (2). A tool is only registered when CAPABILITY_RANK[tool] <= MODE_RANK[mode]. Over-privileged tools are never advertised — this is the primary guarantee.
  • Guard at call time too: every handler calls policy.guard({ tool, capability, <resource>, destructive? }) before doing work. Defence in depth on top of registration.

Non-negotiable invariants (do NOT regress these)

  1. Read-only means read-only. A tool tagged read must never mutate. If it can mutate, it is write or admin.
  2. Destructive ops need a second opt-in. Deletes/drops require the mode and an explicit flag (*_ALLOW_DELETE, OCI_ALLOW_APPLY, K8S_ALLOW_EXEC, etc.). The most dangerous (k8s exec_in_pod) is not even registered without its flag.
  3. Protected resources are read-only forever. System realms/namespaces/databases/internal topics can be read but never mutated, regardless of mode.
  4. Secrets never reach the model. Redact before returning (see redact.ts in mcp-oci / mcp-debezium; reset_password never echoes; list_clients strips secrets; ClickHouse caps rows). Any new field that could carry a credential must be redacted.
  5. Audit + dry-run apply to every write. guard() emits the audit line and returns { dryRun }; write handlers must honor dryRun by returning intent without calling the backend.
  6. stdout belongs to MCP. All logs/audit/warnings go to stderr only. Never console.log to stdout.

Read the full file on GitHub · 84 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 84 lines · 112 tokens per session scan A f5e81688a5ec

Subscribe to this mod's changes

mcp-suite-maintenance is a skill published in the GitHub repository dockndevai/mcp-azure-devops (1 stars, last pushed today), licensed MIT. It adds 112 tokens to every session and 1,650 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to mcp-suite-maintenance, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

blast-radius

Trace ServiceNow configuration dependencies — what artifacts touch a given field, what calls a script include, table/app-level config inventory. Use before deletes, renames, or refactors.

serac-labs/serac · 39 tokens

change-management

Create and transition ServiceNow change requests (normal/standard/emergency), change tasks, affected CIs, approval routing, CAB scheduling, and conflict detection across maintenance windows.

serac-labs/serac · 37 tokens

cmdb-patterns

Create ServiceNow CIs and cmdbrelci relationships, walk upstream/downstream impact, detect orphan/stale CIs, and align discovered CIs with the proper sysclassname hierarchy.

serac-labs/serac · 43 tokens

incident-management

Manage ServiceNow incidents — creation with impact/urgency priority calc, auto-assignment by category, reassignment tracking, major incident declaration with bridge calls, time-based escalation, MTTR metrics.

serac-labs/serac · 42 tokens

client-scripts

Write ServiceNow client scripts (onLoad/onChange/onSubmit/onCellEdit) using gform, guser, GlideAjax, field visibility/mandatory toggles, and validation with debounced server calls.

serac-labs/serac · 45 tokens

fluent-development

This skill should be used when the user asks to "build a fluent app", "create a servicenow app in typescript", or mentions "servicenow sdk", "now-sdk", "fluent", "scoped app as code", or "pro-code development" — or when the working directory contains a now.config.json or .now.ts files.

serac-labs/serac · 77 tokens