Borrowing it
Nothing to install: this file belongs to berntpopp/gencc-link. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/berntpopp/gencc-link/main/.claude/skills/mcp-tool-change/SKILL.mdgit clone --depth 1 https://github.com/berntpopp/gencc-linkWrote 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/berntpopp/gencc-link/mcp-tool-change)<a href="https://agentmods.dev/skills/berntpopp/gencc-link/mcp-tool-change"><img src="https://agentmods.dev/badge/skills/berntpopp/gencc-link/mcp-tool-change/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.
<a href="https://agentmods.dev/skills/berntpopp/gencc-link/mcp-tool-change"><img src="https://agentmods.dev/badge/skills/berntpopp/gencc-link/mcp-tool-change.svg" alt="Reviewed on agentmods" width="80" 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.00048 | $0.00749 |
| Opus 5 | $0.00024 | $0.00375 |
| Sonnet 5 | $0.00010 | $0.00150 |
| Haiku 4.5 | $0.00005 | $0.00075 |
Grade A, and why
mcp-tool-change 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 9d 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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MCP tool change
Use this skill when changing the MCP tool surface (additions, renames, removals, description rewrites). GenCC-Link exposes exactly 10 tools today; the tool list is part of the public contract.
Checklist
-
Pick the tool module. Tools are grouped by concern under
gencc_link/mcp/tools/:- discovery:
discovery.py(get_server_capabilities,get_gencc_diagnostics) - genes:
genes.py(search_genes,get_gene_curations) - diseases:
diseases.py(search_diseases,get_disease_curations) - assertions:
assertions.py(get_gene_disease_assertion,find_curations,resolve_identifier) - submitters:
submitters.py(list_submitters) Add the tool to the matchingregister_*_tools(mcp)function (create a new group only if it genuinely does not fit an existing one).
- discovery:
-
Register in the facade. If you added a new
register_*_toolsgroup, wire it intogencc_link/mcp/facade.pycreate_gencc_mcp(). -
Update the capabilities
TOOLStuple. Editgencc_link/mcp/capabilities.py— theTOOLStuple is the canonical inventory returned byget_server_capabilitiesand thegencc://capabilitiesresource. Order matters; keep it consistent with the README table. -
Tune the description and envelope. Write the tool description for an AI client choosing a tool: what it does, when to use it, input/output shape, and what it does NOT do. Keep
READ_ONLY_OPEN_WORLDannotations (gencc_link/mcp/annotations.py), therun_mcp_toolenvelope (gencc_link/mcp/envelope.py),response_modeshaping (gencc_link/services/shaping.py), and_meta.next_commands(gencc_link/mcp/next_commands.py). -
Error mapping. If the tool can raise a new exception, ensure it maps to a typed error code (
invalid_input,not_found,ambiguous_query,data_unavailable,upstream_unavailable,rate_limited,internal_error) ingencc_link/exceptions.py/ the envelope classifier.
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.
- 9d ago First seen · 59 lines · 48 tokens per session scan A 808cbdaee251
mcp-tool-change is a skill published in the GitHub repository berntpopp/gencc-link (0 stars, last pushed 6d ago), licensed MIT. It adds 48 tokens to every session and 749 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
computase
Performs verified local nucleotide-sequence computation with Computase. Use when an agent needs sequence composition or GC bounds, a reverse complement, translation, candidate ORFs, or IUPAC motif sites through Computase MCP tools or the isolated Skill runner.
noodle-biomedical-literature-discovery
Find, inspect, compare, and traverse public biomedical research literature. Use for PubMed or scholarly paper search, publication details, PMID/DOI/PMCID lookup, related papers, citation paths, semantic literature neighborhoods, corpus coverage, or questions asking what research exists about a gene, variant…
noodle-biomedical-literature-discovery-mcp
Select Noodle Biomedical Literature Discovery MCP from Biorouter for public biomedical paper search, PMID DOI or PMCID lookup, publication inspection, related papers, citation or semantic graph traversal, and corpus metadata even when the user does not know the Noodle name.
biomed-research
Use when answering biomedical research questions that need source-backed evidence from local MCP servers, including gene, disease, drug, variant, phenotype, study, or clinical-trial questions.
design-mcp-server
Design the tool surface, resources, and service layer for a new MCP server. Use when starting a new server, planning a major feature expansion, or when the user describes a domain/API they want to expose via MCP. Produces a design doc at docs/design.md that drives implementation.
add-tool
Scaffold a new MCP tool definition. Use when the user asks to add a tool, create a new tool, or implement a new capability for the server.