deployment-expert

deployment-expert is an agent for Claude Code from Matt-Dionis/claude-code-configs. It costs 0 tokens per session (2,590 once invoked), scanned A, original, MIT.

A guide for deploying and packaging MCP servers, which provide tools or data to AI clients. It covers npm packages, Docker containers, Claude Code configuration, production settings, monitoring, and automated delivery.

In plain words
What is it for?
Use it to prepare an MCP server for npm publishing, Docker deployment, Claude Code integration, production operation, or CI/CD pipelines.
Why use it?
It helps turn a working server into a distributable and deployable package with build, test, configuration, and release steps.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/matt-dionis/claude-code-configs/deployment-expert
Clone the repo
git clone --depth 1 https://github.com/Matt-Dionis/claude-code-configs

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 deployment-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/deployment-expert.svg)](https://agentmods.dev/agents/matt-dionis/claude-code-configs/deployment-expert)
Your own site
<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/deployment-expert"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/deployment-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,590 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 findings. Scan, not verified.
Origin original No closer match found 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 $0.00000 $0.02590
Opus 5 $0.00000 $0.01295
Sonnet 5 $0.00000 $0.00518
Haiku 4.5 $0.00000 $0.00259

Measured 5d ago against content hash b737aa878e04, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deployment-expert scanned grade A with 2 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/health"]

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

import { spawn } from 'child_process';
configurations/mcp-servers/simple-mcp-server/.claude/agents/deployment-expert.md · 477 lines

How it starts

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

MCP Deployment and Packaging Expert

You are an expert in deploying and packaging MCP servers. You understand Docker containerization, npm publishing, Claude Code integration, and production deployment strategies.

Expertise Areas

  • npm Publishing - Package configuration and distribution
  • Docker Deployment - Containerization and orchestration
  • Claude Integration - Configuring servers for Claude Code
  • Production Setup - Environment configuration and monitoring
  • CI/CD Pipelines - Automated testing and deployment

npm Package Configuration

Package.json Setup

{
  "name": "@yourorg/mcp-server",
  "version": "1.0.0",
  "description": "MCP server for specific functionality",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "mcp-server": "./dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build && npm test",
    "postversion": "git push && git push --tags"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "keywords": [
    "mcp",
    "mcp-server",
    "claude",
    "ai-tools"
  ],
  "peerDependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0"
  }
}

CLI Wrapper

#!/usr/bin/env node
// dist/cli.js

import { spawn } from 'child_process';
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

// Start the server with stdio transport
const serverPath = join(__dirname, 'index.js');
const server = spawn('node', [serverPath], {
  stdio: 'inherit',
  env: {
    ...process.env,
    MCP_TRANSPORT: 'stdio',
  },
});

server.on('exit', (code) => {
  process.exit(code || 0);
});

Publishing Workflow

# 1. Build and test
npm run build
npm test

# 2. Update version
npm version patch # or minor/major

# 3. Publish to npm
npm publish

# 4. Tag release
git tag v1.0.0
git push origin v1.0.0

Read the full file on GitHub · 477 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. 5d ago First seen · 477 lines · 0 tokens per session scan A b737aa878e04

Subscribe to this mod's changes

deployment-expert is an agent published in the GitHub repository Matt-Dionis/claude-code-configs (625 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,590 tokens. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

devops-engineer

Deployment and infrastructure expert for .NET — Docker multi-stage builds, GitHub Actions and Azure DevOps pipelines, and .NET Aspire orchestration. Use when containerizing an application, setting up or fixing CI/CD, configuring Aspire AppHost and service defaults, or preparing an app for production deployment.

codewithmukesh/dotnet-claude-kit · 64 tokens

devops-engineer

Handles deployment configs, CI/CD pipelines, Docker, infrastructure, and cloud operations. Use for deployment reviews and infrastructure tasks.

faizkhairi/claude-code-blueprint · 29 tokens

k8s-image-auditor

Kubernetes deployment and image audit specialist. Detects stale images, caching issues, wrong pull policies, and volume problems. Use proactively before and after Helm deploys.

TheLobbi/claude · 41 tokens

helm-agent

Executing agent. Writes and maintains Helm charts: Chart.yaml, templates/, values.yaml, helpers. Scope: davinci/kubernetes/apps/helm/, /Chart.yaml, /values.yaml.

alexeyshishin/as-skill · 44 tokens

deployment-verifier

Verifies local deployment health — checks ports, starts app, polls health endpoint, inspects Docker containers.

asysta-act/agent-flow · 24 tokens

incident-commander

Conduz investigação de incidente end-to-end — triagem, preservação de evidência, hipótese, validação e proposta de mitigação. Despachado por /pwdev-devops:incidente. Modelo forte porque correlacionar sintomas sob pressão é onde o raciocínio mais importa. Propõe; nunca executa sozinho.

pwdev-solucoes/pwdev-claude-marketplace · 74 tokens