medicare_lcd_search

Pack: medicare-coverage · Endpoint: https://gateway.pipeworx.io/medicare-coverage/mcp

Search current final Medicare Local Coverage Determinations (LCDs), optionally restricted to a state. LCDs are contractor- and jurisdiction-specific and can differ across locations.

Parameters

NameTypeRequiredDescription
querystringyesPolicy title/topic or LCD number.
statestringnoOptional US state name or two-letter abbreviation. California, New York and Missouri span multiple MAC jurisdictions; those resolve to the whole-state jurisdiction and the response reports which one under state_resolved.
statusstringnoOptional CMS status filter.
limitnumbernoResults (1-100, default 25).

Example call

Arguments

{
  "query": "glucose monitor",
  "state": "CA",
  "limit": 25
}

curl

curl -X POST https://gateway.pipeworx.io/medicare-coverage/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"medicare_lcd_search","arguments":{"query":"glucose monitor","state":"CA","limit":25}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('medicare_lcd_search', {
  "query": "glucose monitor",
  "state": "CA",
  "limit": 25
});

Connect

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

{
  "mcpServers": {
    "medicare-coverage": {
      "url": "https://gateway.pipeworx.io/medicare-coverage/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 29, 2026