The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Medical Codes MCP Server listing page.
Decode, search, validate, and crosswalk US medical codes — ICD-10-CM, ICD-10-PCS, HCPCS Level II, RxNorm — over a bundled offline index via MCP. STDIO or Streamable HTTP.
Public Hosted Server: https://medical-codes.caseyjhand.com/mcp
[!NOTE] Informational, not clinical or coding advice. This server returns official code descriptions and billable/validity flags from public-domain federal releases to help you decode and look up codes. It is not medical advice, and a
valid_billableresult is not a coding or reimbursement decision. Always verify codes against the official source releases (CMS, CDC/NCHS, NLM) and your payer's rules before submitting a claim. The bundled data is only as current as the release baked into the build — callmedcode_list_systemsto see exactly which releases are active.
The code data is bundled inside the package — a single SQLite + FTS5 database (data/medical-codes.db) built at package-build time from the canonical federal source files and shipped in the npm tarball and Docker image. The server opens it read-only at startup and answers every tool call from disk.
That means the server is offline, keyless, and deterministic: no runtime network calls, no API key, no rate limit, single-tenant. The same inputs against the same bundled build always return the same output.
Only freely-redistributable, public-domain US federal code sets are bundled:
| System | Source | Covers |
|---|---|---|
| ICD-10-CM | CDC/NCHS — US federal, public domain | Diagnoses (billable leaf codes + non-billable category headers) |
| ICD-10-PCS | CMS — US federal, public domain | Inpatient procedures (axis-based 7-character codes) |
| HCPCS Level II | CMS — US federal, public domain | Supplies, drugs, and non-physician services |
| RxNorm | NLM RxNav — public domain | Drugs: name ↔ RXCUI, NDC ↔ RXCUI crosswalk, ingredients, and brands |
RxNorm bundles the current RxNorm normalized drug vocabulary — ingredients, brand names, clinical & branded drugs, and packs, with their NDC and ingredient/brand crosswalks. It is sourced at build time from the keyless RxNav REST API, which serves the public-domain normalized layer — never the UMLS-licensed source vocabularies, so it stays freely redistributable in an offline package. (The full UMLS RxNorm release, which pulls in those licensed sources, is intentionally excluded.) This powers medcode_map_codes' drug directions and direct NDC → drug decode in medcode_get_code.
CPT (AMA copyright) and SNOMED CT / LOINC (UMLS-license-gated) are intentionally absent — they are not freely redistributable, so they cannot ship in an offline package.
US scope. ICD-10-CM and ICD-10-PCS are the US clinical modifications, not the WHO ICD-10/ICD-11 base or another country's national modification.
Six tools organized goal-first — one per user action, with a system discriminator instead of a per-system tool for each of the bundled code sets. All are read-only.
| Tool | Description |
|---|---|
medcode_get_code | Decode 1–50 codes to their official descriptions. Auto-detects the system per code; partial-success found / notFound. |
medcode_search_codes | Full-text search over official descriptions — go from a clinical description to the code. |
medcode_check_code | Validate a code's existence, currency, and billability, with a whyNot for non-billable/terminated cases. |
medcode_map_codes | Crosswalk a code within its hierarchy (parents/children) or a drug across RxNorm (name ↔ RXCUI, NDC ↔ RXCUI, RXCUI → ingredients/brands). |
medcode_browse_hierarchy | Walk a system's hierarchy for discovery without a search term. |
medcode_list_systems | List bundled systems with release identifiers, effective dates, and code counts (provenance). |
medcode_get_codeDecode one or more codes seen in a claim, EHR field, or another health server's output. The 80% entry point.
0777-3105-02, 5-3-2, 5-4-1, or the 11-digit 5-4-2) or as bare 10/11 digits — offline via the bundled NDC↔RxNorm map, tagged source: "NDC"found, unresolved in notFound with a per-code reason, so one bad code never fails the batchsystem overrides auto-detection when a value is genuinely ambiguous (an ambiguous code lists its candidateSystems)includeHierarchy attaches each code's parent and immediate childrensystem is echoed on every result for chaining into medcode_map_codes or a billability checkmedcode_search_codesFind codes whose official descriptions match a described concept — the reverse of medcode_get_code.
"diabetic neuropathy" returns codes mentioning bothsystem, billableOnly (exclude headers/categories), and chaptermedcode_check_codeValidate whether a code is safe to submit, before a claim goes out.
valid_billable, valid_not_billable, valid_header, or terminatedwhyNot string explains the non-billable and terminated cases (e.g. "valid ICD-10-CM category but not billable — submit a more specific child code")whyNot, not an error — only a code absent from every bundled system raises unknown_codemedcode_map_codesCrosswalk a code across systems and within a hierarchy.
parents and children walk a code's prefix hierarchy one level per call — immediate parent/children only (depth-1); call iteratively for the full path (ICD-10-CM / HCPCS; ICD-10-PCS codes have no prefix parent)name_to_rxcui (drug name → RXCUI), ndc_to_rxcui / rxcui_to_ndc (NDC ↔ RXCUI; NDCs accepted hyphenated in an FDA segment configuration — 4-4-2, 5-3-2, 5-4-1, or the 11-digit 5-4-2 — or as bare 10/11 digits), rxcui_to_ingredients / rxcui_to_brands (RXCUI → ingredient/brand RXCUIs, each with the target's RxNorm name)source provenance (which system or edge answered) so a chained call uses the right identifierchildren, name_to_rxcui, and rxcui_to_ndc can return large sets and paginate — a product can carry thousands of package NDCs; pass a response's nextCursor back as cursor (with an optional limit) to walk the full setmedcode_browse_hierarchyOrient in an unfamiliar system or enumerate a category's specific codes, without a search term.
node: top-level entries (ICD-10-CM categories, HCPCS range buckets, or ICD-10-PCS first-axis values)node: its immediate childrenBuilt on @cyanheads/mcp-ts-core:
tools/listDomain-specific:
system disambiguates collisionsmedcode_check_code, not a heuristicAgent-friendly output:
system is echoed for chaining, and medcode_list_systems reports exactly which release is baked into the running buildmedcode_get_code returns per-code found / notFound rows instead of failing the batchmedcode_check_code's typed status and medcode_map_codes' source let callers branch on data, not string parsingThis server ships with the code database bundled — there is no API key to obtain and nothing to download at runtime.
A public instance is available at https://medical-codes.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP, with this client config:
Add the following to your MCP client configuration file.
Or with npx (no Bun required):
Or with Docker:
For Streamable HTTP, set the transport and start the server:
Refer to "your MCP client configuration file" generically — different clients use different config paths, and the server isn't client-specific.
better-sqlite3 optional dependency when not run under Bun).The server is offline and keyless — there are no required variables. Two server-specific knobs and the standard framework vars apply:
| Variable | Description | Default |
|---|---|---|
MEDCODE_DB_PATH | Absolute path override for the bundled SQLite index. Set only to point at a custom-built or externally-mounted database. | packaged data/medical-codes.db |
MEDCODE_MAX_RESULTS | Cap on rows returned by medcode_search_codes / medcode_browse_hierarchy. | 50 (ceiling 200) |
MCP_TRANSPORT_TYPE | Transport: stdio or http. | stdio |
MCP_HTTP_PORT | Port for the HTTP server. | 3010 |
MCP_HTTP_ENDPOINT_PATH | Endpoint path where the MCP server is mounted. | /mcp |
MCP_SESSION_MODE | HTTP session handling: stateless, stateful, or auto (which resolves to stateful). The published Docker image runs stateless. | auto |
MCP_AUTH_MODE | Auth mode: none, jwt, or oauth. | none |
MCP_LOG_LEVEL | Log level (RFC 5424). | info |
OTEL_ENABLED | Enable OpenTelemetry instrumentation. | false |
See .env.example for the full list of optional overrides.
Build and run:
Run checks and tests:
The bundled data/medical-codes.db ships in the npm package and Docker image but, at >100 MB, is not committed to git — fetch it from the GitHub Release assets or rebuild it locally with the build script. You only rebuild when refreshing to a new federal release. The script never downloads: extract the canonical .gov source files (ICD-10-CM/PCS order files, HCPCS ANWEB.txt — URLs in the script header) into a directory, then point the script at it:
It parses the source files and emits the single .db file. It runs at build time only — the server never downloads anything.
The Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/medical-codes-mcp-server. It copies the bundled data/medical-codes.db into the image so the server is fully self-contained. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
| Directory | Purpose |
|---|---|
src/index.ts | createApp() entry point — registers the six tools and opens the bundled index in setup(). |
src/config | Server-specific environment variable parsing and validation with Zod. |
src/mcp-server/tools | Tool definitions (*.tool.ts). |
src/services/code-index | The code-index service — read-only SQLite handle, code-shape detection, FTS5 query translation. |
scripts/build-index.ts | Build-time ingest pipeline that bakes the federal source files into data/medical-codes.db. |
data/medical-codes.db | The bundled SQLite + FTS5 code index, opened read-only at runtime. |
tests/ | Unit and integration tests mirroring src/. |
See CLAUDE.md/AGENTS.md for development guidelines and architectural rules. The short version:
try/catch in tool logicctx.log for request-scoped logging; the code index is a read-only global, not tenant statecreateApp() array in src/index.tsIssues and pull requests are welcome. Run checks and tests before submitting:
Apache-2.0 — see LICENSE for details.