Business-Central-MCP-Integration: Skill for Claude Code

.claude/skills/release/SKILL.md

bc-mcp-release is a skill for Claude Code from MehrozeKhan73/Business-Central-MCP-Integration. It costs 131 tokens per session (2,439 once invoked), scanned C, a copy of bc-mcp-release, MIT.

A step-by-step release guide for publishing the business-central-mcp package to npm, the registry used to distribute JavaScript packages.

In plain words
What is it for?
Use it to prepare a version, build and test the package, inspect the npm archive, publish it, and push its Git tag.
Why use it?
It helps prevent an unsafe release by checking the branch, working tree, remote status, and tests before asking for confirmation on irreversible actions.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is MehrozeKhan73/Business-Central-MCP-Integration's own configuration. It tells Claude Code how to work on Business-Central-MCP-Integration 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 Business-Central-MCP-Integration configures →

Reuse

Borrowing it

Nothing to install: this file belongs to MehrozeKhan73/Business-Central-MCP-Integration. 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/MehrozeKhan73/Business-Central-MCP-Integration/main/.claude/skills/release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/MehrozeKhan73/Business-Central-MCP-Integration

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 bc-mcp-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/mehrozekhan73/business-central-mcp-integration/release/github.svg)](https://agentmods.dev/skills/mehrozekhan73/business-central-mcp-integration/release)
Your own site
<a href="https://agentmods.dev/skills/mehrozekhan73/business-central-mcp-integration/release"><img src="https://agentmods.dev/badge/skills/mehrozekhan73/business-central-mcp-integration/release/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 bc-mcp-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/mehrozekhan73/business-central-mcp-integration/release"><img src="https://agentmods.dev/badge/skills/mehrozekhan73/business-central-mcp-integration/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 131 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,439 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00131 $0.02439
Opus 5 $0.00066 $0.01220
Sonnet 5 $0.00026 $0.00488
Haiku 4.5 $0.00013 $0.00244

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

Security

Grade C, and why

bc-mcp-release scanned grade C with 1 finding 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 11d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

cd .. && rm -rf bc-mcp-smoke
Origin

This is a copy

100% identical to bc-mcp-release — 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/release/SKILL.md · 254 lines

How it starts

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

bc-mcp release runbook

Release business-central-mcp to npm. The package is configured for manual publish via prepublishOnly (typecheck + build); the rest is gated by you to keep destructive operations safe.

This is a runbook, not an automated tool. Walk the user through each step, pausing on anything destructive (version bump, publish, tag push) for explicit confirmation. Releases are irreversible — npm allows unpublish only within 72 hours of publish, and only if no other package depends on the exact version.

Preflight checklist

Run these before suggesting a version bump. If any fail, stop and surface the failure — don't paper over it.

cd U:/Git/bc-mcp        # or wherever the repo lives

# Working tree clean?
git status --short          # expect empty
git rev-parse --abbrev-ref HEAD   # expect master

# Up-to-date with origin?
git fetch origin
git status -sb              # expect "## master...origin/master" with no behind/ahead

# All tests pass?
npm run typecheck           # tsc --noEmit, expect exit 0
npm test                    # unit + protocol, expect green
npm run test:integration    # against live BC, expect green (skip if no BC available, but flag the skip)

# CHANGELOG up-to-date?
grep -q "^## \[Unreleased\]" CHANGELOG.md && echo "OK: [Unreleased] section exists"
# Inspect the [Unreleased] section — it should describe what's about to ship.

If integration tests can't run (no live BC), explicitly tell the user "integration tests skipped — running CI to compensate". CI will run unit + protocol on Node 20/22/24 against the master branch via .github/workflows/ci.yml.

Step 1: Pick the version

Read package.json to see the current version. Compare against published versions on npm:

npm view business-central-mcp versions --json

Decide the bump per semver:

Change kind pre-1.0 (0.x.y) post-1.0 (x.y.z)
Bug fix only 0.x.y patch x.y.z patch
New feature, backwards-compatible 0.x.0 minor x.y.0 minor
Breaking change to public API 0.x.0 minor (allowed pre-1.0) x.0.0 major

Read the full file on GitHub · 254 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. 11d ago First seen · 254 lines · 131 tokens per session scan C 834f16110737

Subscribe to this mod's changes

bc-mcp-release is a skill published in the GitHub repository MehrozeKhan73/Business-Central-MCP-Integration (0 stars, last pushed 1mo ago), licensed MIT. It adds 131 tokens to every session and 2,439 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 100% identical to bc-mcp-release, differing in 0 lines, and is treated as a copy.