medicare_lcd_detail
Pack: medicare-coverage · Endpoint: https://gateway.pipeworx.io/medicare-coverage/mcp
Retrieve one Medicare LCD by document ID and version. Detailed LCD text requires a CMS license-agreement bearer token because documents may contain licensed AMA/ADA/AHA material; pass _licenseToken obtained directly from CMS after accepting those terms.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
document_id | string | yes | |
version | number | no | |
_licenseToken | string | yes | CMS Coverage API license token, valid for one hour. |
Example call
Arguments
{
"document_id": "33393",
"_licenseToken": "CMS_LICENSE_TOKEN"
}
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_detail","arguments":{"document_id":"33393","_licenseToken":"CMS_LICENSE_TOKEN"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('medicare_lcd_detail', {
"document_id": "33393",
"_licenseToken": "CMS_LICENSE_TOKEN"
});
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.