meps_drug_use

Pack: meps · Endpoint: https://gateway.pipeworx.io/meps/mcp

National prescription volume and spending for one drug: how many Americans filled it, how many fills, total spend across all payers and how much patients paid out of pocket. Population-wide rather than a single programme, so it answers how widely used a medicine is in the US and what share of its cost falls on patients.

Parameters

NameTypeRequiredDescription
drugstringyesGeneric drug name, e.g. “atorvastatin”.
yearnumbernoSurvey year. Defaults to the most recent loaded.

Example call

Arguments

{
  "drug": "atorvastatin"
}

curl

curl -X POST https://gateway.pipeworx.io/meps/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"meps_drug_use","arguments":{"drug":"atorvastatin"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('meps_drug_use', {
  "drug": "atorvastatin"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "meps": {
      "url": "https://gateway.pipeworx.io/meps/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026