loinc

Pack: clinicaltables · Endpoint: https://gateway.pipeworx.io/clinicaltables/mcp

“LOINC code for [lab test]” / “standard code for blood test [X]” / “lab result identifier lookup” / “normalize lab name [Y]” — search LOINC lab test codes (Logical Observation Identifiers Names and Codes, universal lab test identifiers). Returns codes like “2093-3 Cholesterol [Mass/Vol] Ser/Plas”. Use when normalizing lab results across institutions.

Example call

Arguments

{
  "terms": "hemoglobin A1c"
}

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":"loinc","arguments":{"terms":"hemoglobin A1c"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('loinc', {
  "terms": "hemoglobin A1c"
});

More examples

{
  "terms": "cholesterol",
  "count": 10
}

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.

Regenerated from source · build September 16, 2026