procedures

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

“What is the procedure called [X]” / “medical procedure name lookup” / “patient-friendly name for [surgery]” — search clinical procedure names (NLM curated, ~7k entries). Returns short names like “Appendectomy”, “Knee replacement”. Patient-facing language; use for forms or intake screens. This vocabulary is SMALL and curated, so common terms can legitimately miss (“colonoscopy” and “MRI” both return 0, verified 2026-09-16) — a no_match here means “not in this list”, not “no such procedure”. For billing codes use icd10cm or a CPT source instead.

Example call

Arguments

{
  "terms": "appendectomy",
  "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":"procedures","arguments":{"terms":"appendectomy","count":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('procedures', {
  "terms": "appendectomy",
  "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