Skip to main content
Glama

Committee Financials

committee_financials
Read-onlyIdempotent

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.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cycleNoElection cycle year (e.g., 2024). Defaults to most recent.
_apiKeyYesOpenFEC API key
committee_idYesFEC committee ID (e.g., "C00401224")

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "_apiKey": "your-open-fec-api-key",
      -    "committee_id": "C00401224"
      -  },
      -  {
      -    "_apiKey": "your-open-fec-api-key",
      -    "committee_id": "C00401224",
      -    "cycle": 2024
      -  }
      -]New value: +[
      +  {
      +    "committee_id": "C00401224"
      +  },
      +  {
      +    "committee_id": "C00401224",
      +    "cycle": 2024
      +  }
      +]
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "_apiKey": "your-open-fec-api-key",
      +    "committee_id": "C00401224"
      +  },
      +  {
      +    "_apiKey": "your-open-fec-api-key",
      +    "committee_id": "C00401224",
      +    "cycle": 2024
      +  }
      +]
  3. First observed

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, non-destructive, and open-world behavior. The description adds useful context beyond annotations by enumerating the exact returned data: receipts, disbursements, cash on hand, and independent expenditures by cycle. It does not contradict the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences cover what the tool returns, the required identifier, and the prerequisite search step. Every sentence adds value and the most important information comes first.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 3-parameter read-only tool with full schema coverage and a clear return list, the description is complete. The agent knows what to pass, how to get the ID, and what results to expect, even without an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all three parameters are already documented. The description adds the 'by cycle' context and the workflow hint for committee_id, but most parameter meaning already lives in the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly names the resource (committee/PAC campaign-finance totals), the lookup key (FEC committee ID), and the action (get totals). It differentiates from siblings like search_committees by stating the ID must be found there first, and from candidate_financials by specifying committee/PAC rather than candidate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives an explicit prerequisite: 'Use search_committees first to find the committee ID.' This tells the agent the correct workflow. It does not explicitly state when not to use this tool versus candidate_financials, but the resource distinction is strong enough for this simple case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.