conditions
Pack: clinicaltables · Endpoint: https://gateway.pipeworx.io/clinicaltables/mcp
“What is [condition]” / “look up medical condition by name” / “find a disease called [X]” / “patient-friendly medical term for [Y]” — search the NLM patient-friendly medical conditions vocabulary (~700 common conditions written for lay readers). Returns canonical names like “Migraine”, “Type 2 diabetes”. Use for symptom-to-condition lookup, intake forms, or simplifying clinical text for patients.
Example call
Arguments
{
"terms": "migraine",
"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":"conditions","arguments":{"terms":"migraine","count":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('conditions', {
"terms": "migraine",
"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.