medicare_nca_detail

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

Retrieve one CMS National Coverage Analysis by document ID, including request, issue, benefit category, dates, decision memo, and public-comment status when supplied by CMS.

Parameters

NameTypeRequiredDescription
document_idstringyesCMS NCA document ID.

Example call

Arguments

{
  "document_id": "321"
}

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_nca_detail","arguments":{"document_id":"321"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('medicare_nca_detail', {
  "document_id": "321"
});

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