Medicare Pricing

live HealthPhysics

What does Medicare PAY — physician fee schedule, lab rates, and per-day unit

4 tools
0ms auth
free tier 50 calls/day

Tools

medicare_physician_payment

What does Medicare pay a doctor for a procedure code, in a specific place? Returns the relative value units (work, practice expense, malpractice) and the actual dollar payment for a HCPCS/CPT code, ad

No parameters required.

Try it
medicare_lab_rate

What does Medicare pay for a laboratory test? Returns the national Clinical Laboratory Fee Schedule rate for a lab HCPCS/CPT code — lab tests are paid from their own national fee schedule rather than

No parameters required.

Try it
medicare_code_units_limit

How many units of a procedure code will Medicare pay for one patient in one day? Returns the NCCI Medically Unlikely Edit (MUE) — the maximum units allowed — with the adjudication indicator saying whe

No parameters required.

Try it
medicare_pricing_coverage

What Medicare pricing data is loaded and how current it is: the fee-schedule years and quarters held, how many codes are in each dataset, how many localities, and which datasets are absent. Use to che

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-pricing/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-pricing/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"medicare_physician_payment","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_physician_payment", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("what does medicare pay — physician fee schedule, lab rates, and per-day unit");

Related packs

Other Pipeworx packs in the same categories (Health, Physics):