open_payments_company
Pack: cms-open-payments · Endpoint: https://gateway.pipeworx.io/cms-open-payments/mcp
Search payments reported by a manufacturer or GPO in one CMS Open Payments program year. Company matching is a case-insensitive substring and may combine similarly named legal entities.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
company | string | yes | |
year | number | no | |
payment_type | string | no | |
minimum_amount | number | no | |
limit | number | no | |
offset | number | no |
Example call
Arguments
{
"company": "Pfizer",
"year": 2025,
"minimum_amount": 1000,
"limit": 25
}
curl
curl -X POST https://gateway.pipeworx.io/cms-open-payments/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"open_payments_company","arguments":{"company":"Pfizer","year":2025,"minimum_amount":1000,"limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('open_payments_company', {
"company": "Pfizer",
"year": 2025,
"minimum_amount": 1000,
"limit": 25
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cms-open-payments": {
"url": "https://gateway.pipeworx.io/cms-open-payments/mcp"
}
}
}
See Getting Started for client-specific install steps.