b340_covered_entities
Pack: drug-prices · Endpoint: https://gateway.pipeworx.io/drug-prices/mcp
Find 340B drug pricing program covered entities registered with HRSA: hospitals, community health centers, Ryan White HIV clinics, family planning and STD grantees. Filter by state, entity type or name and get the 340B ID, registration start date, parent hospital, Medicare CCN, NPI numbers and how many contract pharmacies each one uses. Answers which providers can buy drugs at 340B ceiling prices in a given state, whether a named hospital participates, and when it joined.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | Two-letter state or territory code, or a full state name (“TX” or “Texas”). |
type | string | no | Entity type. Plain words work (“hospital”, “health center”, “Ryan White”, “critical access”, “homeless”), as do HRSA codes (“DSH”, “CAH”, “CH”). |
name | string | no | Match part of the entity or subsidiary name, e.g. “Cleveland Clinic”. |
id340b | string | no | Exact 340B ID, e.g. “DSH340075H”. |
include_terminated | boolean | no | Include entities no longer participating. Default false — 29,950 of 94,363 records are terminated registrations. |
limit | number | no | Max rows, default 25, max 200. |
Example call
Arguments
{
"state": "TX",
"type": "hospital"
}
curl
curl -X POST https://gateway.pipeworx.io/drug-prices/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"b340_covered_entities","arguments":{"state":"TX","type":"hospital"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('b340_covered_entities', {
"state": "TX",
"type": "hospital"
});
More examples
{
"name": "Cleveland Clinic"
}
{
"state": "Montana",
"type": "critical access"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"drug-prices": {
"url": "https://gateway.pipeworx.io/drug-prices/mcp"
}
}
}
See Getting Started for client-specific install steps.