Both directions work — a code you were handed and need explained, or a description you need the code for — answered from a table that lives in the repository and that you fill with the source you trust.
A Python MCP server over a medical billing code table. Two tools: look one code up by system and number, or search codes by a keyword in their description. The repository ships a small sample table in server.py, meant to be extended or pointed at a real source.
- One CPT, ICD-10 or HCPCS code looked up by system and number
- Codes found by keyword in their description, filtered to one system or searched across all three
- Category and typical reimbursement range, where the record carries them
Python 3.10 or higher, installed with pip install -e . and run as python server.py. The bundled table is a sample: CMS.gov fee schedules, the CDC ICD-10 database and CMS HCPCS lists are the sources for a full one, and AMA CPT descriptions need a licence for commercial use. Verify any code against an official source before it goes on a claim.
