medicare_ncd_detail
Pack: medicare-coverage · Endpoint: https://gateway.pipeworx.io/medicare-coverage/mcp
Retrieve one official Medicare National Coverage Determination by CMS document ID and optional version, including covered indications, limitations, effective dates, benefit category, and revision text.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
document_id | string | yes | CMS NCD document ID returned by medicare_ncd_search. |
version | number | no | Optional document version. |
Example call
Arguments
{
"document_id": "108",
"version": 1
}
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_ncd_detail","arguments":{"document_id":"108","version":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('medicare_ncd_detail', {
"document_id": "108",
"version": 1
});
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.