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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Policy title/topic or LCD number. |
state | string | no | Optional 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. |
status | string | no | Optional CMS status filter. |
limit | number | no | Results (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.