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.
npx agentmods add skills/sshadows/business-central-mcp/releasenpx skills add SShadowS/business-central-mcp --skill releasegit clone --depth 1 https://github.com/SShadowS/business-central-mcpWrote 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.
[](https://agentmods.dev/skills/sshadows/business-central-mcp/release)<a href="https://agentmods.dev/skills/sshadows/business-central-mcp/release"><img src="https://agentmods.dev/badge/skills/sshadows/business-central-mcp/release.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00131 | $0.02439 |
| Opus 5 | $0.00066 | $0.01220 |
| Sonnet 5 | $0.00026 | $0.00488 |
| Haiku 4.5 | $0.00013 | $0.00244 |
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 4d 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 Copies of this mod
4 near-identical copies found in the catalogue:
- bc-mcp-release — 100% identical, 0 lines differ
- bc-mcp-release — 100% identical, 0 lines differ
- bc-mcp-release — 100% identical, 0 lines differ
- bc-mcp-release — 100% identical, 0 lines differ
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 |
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.
- 4d ago First seen · 254 lines · 131 tokens per session scan C 834f16110737
bc-mcp-release is a skill published in the GitHub repository SShadowS/business-central-mcp (38 stars, last pushed 2d 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). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
javascript-sast
JavaScript and Node.js security scanning. Checks dependency vulnerabilities via npm audit and source patterns for XSS, eval, and prototype pollution.
jest-patterns
Jest and Vitest testing patterns including describe/it blocks, expect matchers, mocking, and async test strategies for JavaScript and TypeScript.
integrated-browser
Use this when working on the VS Code integrated browser ("browserView") to understand its architecture and mental model. Covers the embedded Chromium browser, its editor tab, navigation, overlay/layout, sessions, and agent browser tools under src/vs/platform/browserView and src/vs/workbench/contrib/browserView.
agent-host-e2e-tests
Use when writing, recording, updating, validating, or troubleshooting the agent host end-to-end tests under src/vs/platform/agentHost/test/node/e2e (black-box tests that drive the whole agent host over the AHP protocol, using a CapiReplayProxy record/replay system for Claude/Copilot/Codex). Covers adding a…
lint-js
Lint JS/TS code only. Use before opening a PR when only JavaScript or TypeScript files were changed (no Rust).
schema-exploration
Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.