Medicare Coverage

live Reference

MCP server for Medicare Coverage

8 tools
0ms auth
free tier 50 calls/day

Tools

medicare_ncd_detail

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

No parameters required.

Try it
medicare_lcd_detail

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 ob

No parameters required.

Try it
medicare_nca_detail

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.

No parameters required.

Try it
medicare_recent_coverage_changes

Recently published or updated national Medicare coverage documents from CMS, including NCDs, NCAs, CALs, MEDCAC meetings, and technology assessments.

No parameters required.

Try it
medicare_coverage_states

List CMS Coverage API state identifiers used to scope local Medicare coverage searches.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/medicare-coverage/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/medicare-coverage/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"medicare_ncd_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("medicare_ncd_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("mcp server for medicare coverage");