open_payments_product_history
Pack: cms-open-payments · Endpoint: https://gateway.pipeworx.io/cms-open-payments/mcp
Build a cross-year general-payment history for a reported product-name substring across CMS product slots. Product association is reporter-supplied; sample dollar amounts are not complete annual totals.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
product | string | yes | |
company | string | no | |
from_year | number | no | |
to_year | number | no | |
sample_per_year | number | no |
Example call
Arguments
{
"product": "Eliquis",
"from_year": 2021,
"to_year": 2025
}
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_product_history","arguments":{"product":"Eliquis","from_year":2021,"to_year":2025}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('open_payments_product_history', {
"product": "Eliquis",
"from_year": 2021,
"to_year": 2025
});
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.