Medicaid Intelligence
liveHealthGovernmentUSReturn quarterly state Medicaid utilization rows for an exact 11-digit NDC, separated into fee-for-service and managed-care records.
Tools
medicaid_drug_utilizationReturn quarterly state Medicaid utilization rows for an exact 11-digit NDC, separated into fee-for-service and managed-care records. Reimbursement is gross before Medicaid rebates and is not manufactu
No parameters required.
Try it
medicaid_drug_state_marketAggregate one exact NDC across states for a year, keeping fee-for-service and managed-care measures separate. Suppressed rows remain unavailable and totals are gross pharmacy reimbursement before reba
No parameters required.
Try it
medicaid_drug_trendShow annual Medicaid prescription, unit, and gross reimbursement trends for an exact 11-digit NDC from 2020 onward, split between fee-for-service and managed care. Suppressed values are never converte
No parameters required.
Try it
medicaid_managed_care_summaryShow annual state Medicaid enrollment and enrollment in any or comprehensive managed care. Counts are state-reported program enrollment, not covered lives attributable to a particular insurer.
No parameters required.
Try it
medicaid_managed_care_program_mixShow state Medicaid enrollment by managed-care program type, including comprehensive MCO, PCCM, MLTSS, behavioral health, dental, transportation, and PACE. Program counts overlap and must not be summe
No parameters required.
Try it
medicaid_plan_marketReturn a bounded API-order sample of Medicaid managed-care plan/program rows by state and optional year, with the authoritative matching-row count. Zero may represent confidentiality suppression in th
No parameters required.
Try it
medicaid_monthly_managed_careShow monthly Medicaid/CHIP enrollment for one state and managed-care participation category. Data-quality flags and confidentiality suppression are preserved.
No parameters required.
Try it
medicaid_enrollment_operationsShow monthly Medicaid and CHIP enrollment and application-processing indicators for one state. Values are preliminary or updated state reports and may include footnotes or missing periods.
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.
curl -X POST https://gateway.pipeworx.io/medicaid-intelligence/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/medicaid-intelligence/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"medicaid_drug_utilization","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("medicaid_drug_utilization", {});// Or ask in plain English:
const answer = await px.ask("return quarterly state medicaid utilization rows for an exact 11-digit ndc, separated into fee-for-service and managed-care records");