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

NameTypeRequiredDescription
codestringyesCode value (e.g. “J00” for ICD-10-CM acute nasopharyngitis)
code_systemstringyesShort name or OID — ICD-10-CM | SNOMED | RxNorm | LOINC | NDC | MeSH | HGNC | ICD-9-CM
langstringnoen (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.

Regenerated from source · build July 6, 2026