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/henkisdabro/claude-code-mcp-server-selector/releasenpx skills add henkisdabro/Claude-Code-MCP-Server-Selector --skill releasegit clone --depth 1 https://github.com/henkisdabro/Claude-Code-MCP-Server-SelectorWrote 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/henkisdabro/claude-code-mcp-server-selector/release)<a href="https://agentmods.dev/skills/henkisdabro/claude-code-mcp-server-selector/release"><img src="https://agentmods.dev/badge/skills/henkisdabro/claude-code-mcp-server-selector/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.1 | $0.00036 | $0.01641 |
| Opus 5 | $0.00018 | $0.00821 |
| Sonnet 5 | $0.00007 | $0.00328 |
| Haiku 4.5 | $0.00004 | $0.00164 |
Grade A, and why
release 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 250 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Skill
Complete npm release workflow that handles version bumping, git operations, and GitHub releases in the correct order to trigger automatic npm publishing.
Trigger Words
Use when user says: "release", "publish", "ship it", "create release", "npm publish", "/release"
Critical: Correct Order of Operations
The workflow MUST follow this exact sequence to ensure npm publishing works:
1. Version Bump (all files)
2. Build & Test
3. Git Commit (version changes)
4. Git Tag (annotated)
5. Push Commits to main
6. Push Tag to origin
7. Create GitHub Release (triggers npm publish)
8. Verify npm publication
9. Auto-update global installation
Why Order Matters
- GitHub Actions trigger: The
deploy.ymlworkflow only runsnpm publishwhengithub.refstarts withrefs/tags/v - Tag must exist on remote: If you create a GitHub release before pushing the tag, it fails
- Commits must be pushed first: The tag must point to a commit that exists on the remote
Pre-flight Checks
Before starting, verify:
# 1. Clean working directory (or only version-related changes)
git status
# 2. On main branch
git branch --show-current
# 3. GitHub CLI authenticated
gh auth status
# 4. Current versions in sync
echo "package.json: $(node -p "require('./package.json').version")"
echo "CLI source: $(grep "const VERSION" src/cli/index.ts | grep -oP "'[^']+'" | tr -d "'")"
echo "README: $(grep -oP 'v[0-9]+\.[0-9]+\.[0-9]+' README.md | head -1)"
echo "docs/index: $(grep -oP '"softwareVersion": "[^"]+"' docs/index.html | grep -oP '[0-9]+\.[0-9]+\.[0-9]+')"
Version Locations
ALL of these MUST be updated to the same version:
| File | Line | Pattern |
|---|---|---|
package.json |
3 | "version": "X.Y.Z" |
src/cli/index.ts |
18 | const VERSION = 'X.Y.Z'; |
README.md |
12 | > **vX.Y.Z**: |
docs/index.html |
45 | "softwareVersion": "X.Y.Z" |
Complete Workflow
Step 1: Determine Version
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.
- 5d ago First seen · 250 lines · 36 tokens per session scan A e7ea1123851c
release is a skill published in the GitHub repository henkisdabro/Claude-Code-MCP-Server-Selector (8 stars, last pushed 29d ago), licensed MIT. It adds 36 tokens to every session and 1,641 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
write-release-notes
Generate engaging, high-energy release notes for a given version tag. Fetches the release from GitHub, retrieves every linked PR's title and description, then synthesizes all changes into a polished, user-facing release note with an enthusiastic tone. Use when the user asks to write, generate, or create release notes…
release
Cut a new shellshare release: pick the right semver version, run make release, watch CI, and write the narrative GitHub release notes. Use this whenever the user wants to release, ship a new version, cut a release, tag a release, bump the version, or publish — even if they just say "release this" or "ship it". The…
release
Cut a versioned release of harness-mini — bump VERSION, roll the CHANGELOG, tag, and publish a GitHub release. Use when shipping a new version. Wraps bin/harness.sh release; covers the human-judgment steps (semver choice, changelog curation) the script can't make.
npm-release
Guide for setting up automated npm package releases via GitHub Actions using Trusted Publishing (OIDC). Use when creating release workflows, publishing to npm, or troubleshooting CI/CD publish failures.
gitlab-cli
Reference guide for GitLab CLI (glab) commands. Use when running glab commands for issues, merge requests, pipelines, releases, or CI/CD operations, or when the user asks about GitLab CLI syntax.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.