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

NameTypeRequiredDescription
ndcstringyesExact 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.
yearnumbernoCalendar year 2020-2026. Defaults to the most recent year with data.
statestringnoUS state, as a two-letter code (“CA”) or a full name (“California”) — both are accepted.
utilization_typestringnoRestrict to fee-for-service or managed-care records; omit for both.
limitnumberno
offsetnumberno

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.

Regenerated from source · build July 31, 2026