icd10cm
Pack: clinicaltables · Endpoint: https://gateway.pipeworx.io/clinicaltables/mcp
“What’s the ICD-10 code for [diagnosis]” / “diagnosis code lookup” / “billing code for [condition]” / “EHR code for [X]” — search ICD-10-CM diagnostic codes (US clinical modification, ~96k codes). Returns code + full description. Use for medical billing, EHR diagnosis coding, claim coding. Example: terms=“diab” → E11.9 Type 2 diabetes mellitus without complications.
Example call
Arguments
{
"terms": "type 2 diabetes",
"count": 3
}
curl
curl -X POST https://gateway.pipeworx.io/clinicaltables/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"icd10cm","arguments":{"terms":"type 2 diabetes","count":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('icd10cm', {
"terms": "type 2 diabetes",
"count": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clinicaltables": {
"url": "https://gateway.pipeworx.io/clinicaltables/mcp"
}
}
}
See Getting Started for client-specific install steps.