icd9cm
Pack: clinicaltables · Endpoint: https://gateway.pipeworx.io/clinicaltables/mcp
“Old ICD-9 code for [diagnosis]” / “pre-2015 diagnosis codes” — search legacy ICD-9-CM diagnostic codes. Use ONLY when working with pre-2015 US clinical records; new claims must use icd10cm. Same shape as icd10cm.
Example call
Arguments
{
"terms": "asthma",
"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":"icd9cm","arguments":{"terms":"asthma","count":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('icd9cm', {
"terms": "asthma",
"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.