FEC Campaign Finance
Server Details
FEC campaign finance data: candidate fundraising, donors, and spending
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 3 of 3 tools scored.
Each tool targets a distinct aspect of campaign finance: candidates, donors, and spending. There is no overlap, and an agent can easily distinguish between them.
All tools follow the consistent pattern 'get_fec_<noun>', using camelCase with underscores. The naming is predictable and clear.
With only 3 tools, the server is well-scoped to the three main pillars of campaign finance data. No tools seem extraneous or missing for basic queries.
The tool set covers the core lifecycle of campaign finance: candidate summaries, donor contributions, and spending (both independent and direct). While committee details are absent, the set is complete for its intended purpose.
Available Tools
3 toolsget_fec_candidatesAInspect
Get FEC campaign finance data for federal election candidates. Returns fundraising totals, cash on hand, and spending by office (President/Senate/House), state, or party.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Candidate name search | |
| limit | No | Number of results (max 50) | |
| party | No | DEM, REP, IND | |
| state | No | 2-letter state code (TX, CA, NY) | |
| office | No | P=President, S=Senate, H=House | |
| election_year | No | Election cycle year (default: 2026) | 2026 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses that the tool returns fundraising totals, cash on hand, and spending, which is good. However, it does not mention authentication, rate limits, data freshness, or pagination behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two sentences, front-loaded with the purpose and followed by key details. No extraneous words, every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description adequately explains the return values. It covers filtering options and data types. However, it could mention that name is a search parameter and that limit has a maximum, but these are in the schema. Overall, it is fairly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds meaning beyond the schema by explaining what the tool returns (fundraising totals, cash on hand, spending) and how filters relate to that output. This extra context justifies a higher score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets FEC campaign finance data for federal election candidates and specifies the returned data (fundraising totals, cash on hand, spending) and filtering options. It distinguishes from siblings like get_fec_donors and get_fec_spending by focusing on candidates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for candidate finance data but does not explicitly state when to use this tool over siblings or provide exclusions. It lacks explicit when-to-use or when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_fec_donorsBInspect
Get individual donor/contribution data for a candidate or committee from FEC Schedule A filings. Find who is funding campaigns.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results | |
| state | No | Donor state filter | |
| employer | No | Donor employer to search (e.g. "Google", "Goldman Sachs") | |
| min_amount | No | Minimum donation amount | |
| candidate_id | No | FEC candidate ID (e.g. P80001571) | |
| committee_id | No | FEC committee ID (e.g. C00703975) | |
| election_year | No | Election cycle (default: 2026) | 2026 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. It does not mention any behavioral traits such as rate limits, authentication requirements, or whether the operation is read-only. The description is minimal and leaves the agent unaware of important constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise—two sentences that immediately convey the tool's purpose. Every sentence earns its place with no wasted words or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (7 parameters, no output schema, no required fields), the description is too minimal. It does not explain how parameters relate (e.g., need candidate_id or committee_id?), expected output format, or any usage patterns. The agent lacks essential context to use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for all 7 parameters. The tool description does not add any additional meaning beyond what is already in the schema, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves individual donor/contribution data from FEC Schedule A filings. It uses a specific verb ('get') and resource ('donor/contribution data'), and the context of sibling tools (get_fec_candidates, get_fec_spending) further distinguishes its purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when donor data is needed but provides no explicit guidance on when to use this tool versus alternatives (e.g., get_fec_candidates, get_fec_spending), nor any conditions or exclusions. Usage is left inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_fec_spendingAInspect
Get campaign spending data. Type=independent for Super PAC / outside group spending for/against candidates. Type=expenditures for direct campaign spending.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | independent (Super PAC spending) or expenditures (campaign disbursements) | independent |
| limit | No | Number of results | |
| candidate_id | No | Filter by candidate ID | |
| committee_id | No | Committee ID (required for type=expenditures) | |
| election_year | No | Election cycle (default: 2026) | 2026 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for disclosing behavioral traits. It mentions 'Get campaign spending data' but does not specify if the tool is read-only, has authentication requirements, rate limits, or any side effects. The lack of such details limits transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences that front-load the purpose and then explain the key parameter. No extraneous words or redundancies.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 5 parameters fully described in the schema and no output schema, the description covers the main usage guidance for the 'type' parameter. It is sufficient for a straightforward data retrieval tool, though it could mention pagination or default ordering.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, baseline 3. The description adds value by explaining the two 'type' options in more contextual language ('Super PAC / outside group spending' vs 'direct campaign spending'), which aids understanding beyond the schema's brief descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Get campaign spending data' and distinguishes two spending types (independent vs expenditures). This differentiates the tool from sibling tools 'get_fec_candidates' and 'get_fec_donors'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description explains when to use 'type=independent' versus 'type=expenditures', providing clear guidance on parameter choice. However, it does not explicitly state when not to use this tool or mention alternative tools for other FEC data.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenanceQuery FEC campaign finance data — search candidates, track donations, analyze spending, and monitor Super PAC activity via the OpenFEC API.8154MIT
- AlicenseNot gradedqualityAmaintenanceAccess FEC campaign finance data through MCP. Query data about candidates, money trails, and election filings. STDIO & Streamable HTTP.2732Apache 2.0
- AlicenseNot gradedqualityDmaintenanceConnects the OpenFEC API to AI assistants for investigating US federal campaign finance through natural language conversations.1MIT
- AlicenseNot gradedqualityCmaintenanceAccess Federal Election Commission campaign finance data through MCP tools. Enables querying OpenFEC data using natural language via ask_pipeworx or direct tool calls.9MIT