committee_financials

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

Get campaign-finance totals for a committee / PAC by its FEC committee ID (e.g., “C00401224”). Returns receipts, disbursements, cash on hand, and independent expenditures by cycle. Use search_committees first to find the committee ID.

Parameters

NameTypeRequiredDescription
_apiKeystringyesOpenFEC API key
committee_idstringyesFEC committee ID (e.g., “C00401224”)
cyclenumbernoElection cycle year (e.g., 2024). Defaults to most recent.

Example call

Arguments

{
  "_apiKey": "your-open-fec-api-key",
  "committee_id": "C00401224"
}

curl

curl -X POST https://gateway.pipeworx.io/open-fec/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"committee_financials","arguments":{"_apiKey":"your-open-fec-api-key","committee_id":"C00401224"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('committee_financials', {
  "_apiKey": "your-open-fec-api-key",
  "committee_id": "C00401224"
});

More examples

{
  "_apiKey": "your-open-fec-api-key",
  "committee_id": "C00401224",
  "cycle": 2024
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "open-fec": {
      "url": "https://gateway.pipeworx.io/open-fec/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 9, 2026