MCP OpenFEC Server

get_candidate_contributions

Get individual contributions for a candidate

Input Schema

NameRequiredDescriptionDefault
candidate_idYesFEC candidate ID
election_yearNoElection year
sortNoOptional: Sort by contribution_receipt_amount (desc for highest first)

Input Schema (JSON Schema)

{ "properties": { "candidate_id": { "description": "FEC candidate ID", "type": "string" }, "election_year": { "description": "Election year", "type": "number" }, "sort": { "description": "Optional: Sort by contribution_receipt_amount (desc for highest first)", "enum": [ "desc", "asc" ], "type": "string" } }, "required": [ "candidate_id" ], "type": "object" }