ucum

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

“Unit of measure code for [X]” / “standard UCUM unit for [Y]” / “mg/dL code” — search UCUM (the Unified Code for Units of Measure, used by FHIR, LOINC, and most modern health-IT systems). Returns codes like “mg/dL”, “[in_i]” (inch). Use when normalizing lab result units or rendering measurements.

Example call

Arguments

{
  "terms": "mg/dL",
  "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":"ucum","arguments":{"terms":"mg/dL","count":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ucum', {
  "terms": "mg/dL",
  "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.

Regenerated from source · build September 16, 2026