search_icd10

Pack: medical-codes · Endpoint: https://gateway.pipeworx.io/medical-codes/mcp

Search ICD-10-CM diagnosis/billing codes by keyword or code (keyless, offline source: NLM). E.g. “type 2 diabetes” -> [{code:“E11.9”, description:“Type 2 diabetes mellitus without complications”}].

Parameters

NameTypeRequiredDescription
querystringyesA condition name or an ICD-10 code fragment.
limitnumbernoMax results (1-100, default 15).

Example call

Arguments

{
  "query": "type 2 diabetes"
}

curl

curl -X POST https://gateway.pipeworx.io/medical-codes/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_icd10","arguments":{"query":"type 2 diabetes"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_icd10', {
  "query": "type 2 diabetes"
});

More examples

{
  "query": "E11",
  "limit": 10
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "medical-codes": {
      "url": "https://gateway.pipeworx.io/medical-codes/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026