open_payments_company_history

Pack: cms-open-payments · Endpoint: https://gateway.pipeworx.io/cms-open-payments/mcp

Build a cross-year CMS Open Payments history for a company-name substring. Annual counts are authoritative for that query; dollar figures cover only the returned bounded sample and company aliases may split or combine legal entities.

Parameters

NameTypeRequiredDescription
companystringyes
from_yearnumberno
to_yearnumberno
payment_typestringno
sample_per_yearnumberno

Example call

Arguments

{
  "company": "Pfizer",
  "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_company_history","arguments":{"company":"Pfizer","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_company_history', {
  "company": "Pfizer",
  "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.

Regenerated from source · build July 29, 2026