medical-terminologies-mcp: Instructions file for Claude Code

CLAUDE.md

medical-terminologies-mcp CLAUDE.md is an instructions file for Claude Code from SidneyBissoli/medical-terminologies-mcp. It costs 10,194 tokens per session, scanned A, original, MIT.

A repository instruction file for a medical-terminology MCP server, documenting its commands, build targets, tests, runtime, and architecture.

In plain words
What is it for?
Use it when working on the Node.js server, its Cloudflare Worker bundle, local standard-input mode, hosted smoke tests, or development commands.
Why use it?
It gives coding agents the project-specific rules needed to build, test, type-check, and run the server correctly.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

This is SidneyBissoli/medical-terminologies-mcp's own configuration. It tells Claude Code how to work on medical-terminologies-mcp 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 medical-terminologies-mcp configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/SidneyBissoli/medical-terminologies-mcp/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/SidneyBissoli/medical-terminologies-mcp

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 medical-terminologies-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sidneybissoli/medical-terminologies-mcp/claude-md/github.svg)](https://agentmods.dev/instructions/sidneybissoli/medical-terminologies-mcp/claude-md)
Your own site
<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.

agentmods 80×15 button for medical-terminologies-mcp CLAUDE.md

Your own site · 80×15
<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>
Per session 10,194 This file is loaded in full into every session.
When invoked 10,194 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.10194 $0.10194
Opus 5 $0.05097 $0.05097
Sonnet 5 $0.02039 $0.02039
Haiku 4.5 $0.01019 $0.01019

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

Security

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.

CLAUDE.md · 258 lines

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.

Read the full file on GitHub · 258 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. 7d ago Changed · +14 lines · +549 tokens per session 44aa7476da4a
  2. 11d ago First seen · 244 lines · 9,645 tokens per session scan A b7ec35dde8f5

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories