connect
Pack: medlineplus · Endpoint: https://gateway.pipeworx.io/medlineplus/mcp
Map a clinical code (ICD-10-CM, SNOMED CT, RxCUI, LOINC, NDC, MeSH, HGNC) to MedlinePlus consumer-health topics.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
code | string | yes | Code value (e.g. “J00” for ICD-10-CM acute nasopharyngitis) |
code_system | string | yes | Short name or OID — ICD-10-CM | SNOMED | RxNorm | LOINC | NDC | MeSH | HGNC | ICD-9-CM |
lang | string | no | en (default) | es |
Example call
Arguments
{
"code": "J00",
"code_system": "ICD-10-CM"
}
curl
curl -X POST https://gateway.pipeworx.io/medlineplus/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"connect","arguments":{"code":"J00","code_system":"ICD-10-CM"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('connect', {
"code": "J00",
"code_system": "ICD-10-CM"
});
More examples
{
"code": "11161003",
"code_system": "SNOMED",
"lang": "es"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Response from MedlinePlus Connect API mapping clinical codes to topics"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"medlineplus": {
"url": "https://gateway.pipeworx.io/medlineplus/mcp"
}
}
}
See Getting Started for client-specific install steps.