medicaid_drug_utilization
Pack: medicaid-intelligence · Endpoint: https://gateway.pipeworx.io/medicaid-intelligence/mcp
Return 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 manufacturer revenue or net price.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ndc | string | yes | Exact 11-digit National Drug Code, hyphenated or not, e.g. “00002-1433-80” or “00002143380”. Resolve a brand or ingredient name to an NDC first with openfda_drug_label or rxnorm. |
year | number | no | Calendar year 2020-2026. Defaults to the most recent year with data. |
state | string | no | US state, as a two-letter code (“CA”) or a full name (“California”) — both are accepted. |
utilization_type | string | no | Restrict to fee-for-service or managed-care records; omit for both. |
limit | number | no | |
offset | number | no |
Example call
Arguments
{
"ndc": "00002143380",
"year": 2025,
"state": "CA",
"utilization_type": "Managed Care",
"limit": 25
}
curl
curl -X POST https://gateway.pipeworx.io/medicaid-intelligence/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"medicaid_drug_utilization","arguments":{"ndc":"00002143380","year":2025,"state":"CA","utilization_type":"Managed Care","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('medicaid_drug_utilization', {
"ndc": "00002143380",
"year": 2025,
"state": "CA",
"utilization_type": "Managed Care",
"limit": 25
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"medicaid-intelligence": {
"url": "https://gateway.pipeworx.io/medicaid-intelligence/mcp"
}
}
}
See Getting Started for client-specific install steps.