medicare_coverage_timeline

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

Retrieve official CMS version or revision history for an NCD, NCA, CAL, or LCD. LCD revision history requires a caller-provided CMS license token. Timeline entries describe policy publication history, not claims adjudication.

Parameters

NameTypeRequiredDescription
document_typestringyes
document_idstringyes
versionnumberno
_licenseTokenstringnoRequired only for LCD.

Example call

Arguments

{
  "document_type": "NCD",
  "document_id": "355"
}

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_coverage_timeline","arguments":{"document_type":"NCD","document_id":"355"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('medicare_coverage_timeline', {
  "document_type": "NCD",
  "document_id": "355"
});

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 30, 2026