Borrowing it
Nothing to install: this file belongs to SidneyBissoli/medical-terminologies-mcp. 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/SidneyBissoli/medical-terminologies-mcp/main/CLAUDE.mdgit clone --depth 1 https://github.com/SidneyBissoli/medical-terminologies-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/instructions/sidneybissoli/medical-terminologies-mcp/claude-md)<a href="https://agentmods.dev/instructions/sidneybissoli/medical-terminologies-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/sidneybissoli/medical-terminologies-mcp/claude-md/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/instructions/sidneybissoli/medical-terminologies-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/sidneybissoli/medical-terminologies-mcp/claude-md.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.10194 | $0.10194 |
| Opus 5 | $0.05097 | $0.05097 |
| Sonnet 5 | $0.02039 | $0.02039 |
| Haiku 4.5 | $0.01019 | $0.01019 |
Grade A, and why
medical-terminologies-mcp CLAUDE.md 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 7d 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 — 258 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Commands
npm run build # esbuild bundle: src/index.ts -> dist/index.js (Node, ESM, node20)
npm run build:worker-lib # esbuild bundle: src/worker-lib.ts -> dist/worker-lib.js (the Worker's view of the package)
npm run build:all # both bundles
npm start # node dist/index.js (runs the MCP server over stdio)
npm run dev # build + start (stdio)
npm test # vitest run (skips integration tests by default)
npm run test:watch # vitest in watch mode
npm run typecheck # tsc --noEmit (strict; not invoked by `npm run build`)
node scripts/smoke-mcp.mjs # smoke against the hosted Worker (initialize/tools/list/calls)
node scripts/smoke-mcp.mjs --stdio # same smoke over local STDIO (requires npm run build)
The Cloudflare Worker (worker/, not published to npm) is an instance of the
portfolio's Fase 0 hosting template (mcp-br-commons/templates/cloudflare-worker)
and has its own scripts, run from inside worker/ (each first rebuilds
dist/worker-lib.js at the root):
cd worker && npm run dev # wrangler dev — local HTTP transport on :8787
cd worker && npm run deploy # wrangler deploy
cd worker && npm run typecheck # tsc --noEmit
cd worker && npm test # vitest — auth, rate limit, usage, status, surface
The Worker intentionally does not list @modelcontextprotocol/server or zod
in its own deps — they resolve from the parent package's node_modules so there is
a single SDK copy (avoids duplicate-instance type clashes with registerAll).
worker/.npmrc pins legacy-peer-deps=true so npm does not install a second copy
to satisfy the agents package's hard peer ranges.
Run a single test: npx vitest run src/utils/cache.test.ts (or -t '<name pattern>' for a single case).
The package is published to npm with "bin": { "medical-terminologies-mcp": "dist/index.js" }, so consumers can launch the stdio server via npx medical-terminologies-mcp without cloning. prepublishOnly runs npm run build automatically before npm publish so the bundle is fresh in every release.
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.
- 7d ago Changed · +14 lines · +549 tokens per session 44aa7476da4a
- 11d ago First seen · 244 lines · 9,645 tokens per session scan A b7ec35dde8f5
medical-terminologies-mcp CLAUDE.md is an instructions file published in the GitHub repository SidneyBissoli/medical-terminologies-mcp (12 stars, last pushed today), licensed MIT. It adds 10,194 tokens to every session, about $0.0510 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-30.
Other instructions, from other repositories
data-scientist copilot-instructions.md
Repository instructions for a data-science workflow in GitHub Copilot, covering datasets, statistics, and analysis files.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.