UMLS

live HealthcareGovernment

UMLS MCP — NLM Unified Medical Language System: search medical concepts, atoms, and crosswalk codes across SNOMED CT / ICD-10 / RxNorm / LOINC. BYO UTS API key.

4 tools
0ms auth
free tier 50 calls/day

Tools

umls_concept

Concept detail for a CUI. Returns the preferred name, semantic types, atom count, and relation count for a UMLS Concept Unique Identifier. Example: umls_concept({ cui: "C0027051", _apiKey: "your-key"

No parameters required.

Try it
umls_atoms

Source codes (ICD/SNOMED/RxNorm/LOINC) for a concept. Lists the source-asserted atoms of a CUI — the actual codes and names each vocabulary uses for that concept (the crosswalk table). Example: umls_a

No parameters required.

Try it
umls_crosswalk

Crosswalk a code from one vocabulary to others. Given a code in a source vocabulary (e.g. an ICD-10-CM code), returns the concepts that share the same UMLS CUI in other vocabularies (SNOMED CT, RxNorm

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/umls/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/umls/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"umls_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("umls_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("umls mcp — nlm unified medical language system: search medical concepts, atoms, and crosswalk codes across snomed ct / icd-10 / rxnorm / loinc");

Related packs

Other Pipeworx packs in the same categories (Healthcare, Government):