meps_top_drugs

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

The most-used prescription drugs in the United States, ranked by estimated number of people who filled them, with total and out-of-pocket spending. Answers what the most commonly taken medications in America are for a given year.

Parameters

NameTypeRequiredDescription
yearnumbernoSurvey year. Defaults to the most recent loaded.
order_bystringnoRanking measure, default people.
limitnumbernoMax drugs, default 25, max 100.

Example call

Arguments

{
  "limit": 20
}

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_top_drugs","arguments":{"limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('meps_top_drugs', {
  "limit": 20
});

More examples

{
  "order_by": "spending",
  "limit": 15
}

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