Skip to main content
Glama

feeds

congress_trades

US Congress stock transactions from official Senate ePTR and House Clerk disclosures (public domain). Every record carries happened_at (transaction date), disclosed_at (filing date) and observed_at (when this pipeline first saw it). Because the STOCK Act permits ~45 days between trade and disclosure, disclosed_at is the field to use for point-in-time work. Senate data is parsed to ticker level; House filings are metadata only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoSubstring match on member name
sinceNoOnly transactions on/after this YYYY-MM-DD
tickerNoFilter to one ticker, e.g. NVDA
chamberNo

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations available, the description carries the full behavioral burden and does a good job: it explains the three timestamp fields, the ~45-day STOCK Act disclosure delay, and the key limitation that Senate data is parsed to ticker level while House filings are metadata only. It does not cover rate limits, pagination, or return formatting, but the most decision-relevant behaviors are disclosed.

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?

The description is appropriately sized at four sentences, each serving a distinct purpose: scope/source, field definitions, temporal semantics, and data-granularity caveat. It is front-loaded with the primary function and contains no filler or repetition. This is a model of concise, information-dense documentation.

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

Completeness4/5

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

For a tool with four optional filters and no output schema, the description provides the return record fields and critical data-quality caveats, which is sufficient for an agent to invoke it correctly. The main gap is the absence of pagination, result limits, ordering, or a note about what 'metadata only' means for House records, which prevents a perfect score.

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

Parameters4/5

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

The schema already describes three of the four parameters (name, since, ticker), leaving chamber with only enum values. The description adds important semantic nuance beyond the schema: the Senate-vs-House granularity difference affects how ticker and chamber filters behave, and the disclosed_at guidance clarifies the intended meaning of since for temporal filtering. This goes beyond the structured schema coverage.

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

Purpose4/5

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

The description clearly identifies the resource (US Congress stock transactions) and its sources, and implies a query/list operation even though no explicit verb like 'list' or 'get' is used. The domain (Congress) and mention of Senate vs House data distinguish it from the sibling tools focused on ETF flows and insider trades, though that contrast is not explicitly stated.

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

Usage Guidelines3/5

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

The description gives no explicit 'when to use this vs alternatives' guidance. However, it implies the intended use case through domain-specific context, and it offers concrete usage advice about using disclosed_at rather than happened_at for point-in-time work. No exclusions or alternative tool names are mentioned, so usage guidance is mostly implied rather than direct.

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.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool owns a distinct data domain: congressional stock trades, Bitcoin ETF flows, and insider open-market buys/sells. The two insider tools are directional counterparts with explicit cross-references, so selection ambiguity is minimal.

Naming Consistency5/5

All tool names use lower_snake_case and follow the same [domain]_[transaction] pattern: congress_trades, etf_flows, insider_buys, insider_sells. The parallelism between insider_buys and insider_sells is particularly clear.

Tool Count4/5

Four tools is a reasonable, focused size for a financial-feeds server, and each feed is distinct. The generic 'feeds' name leaves room for more feeds to be added, but the current count is not thin enough to hurt usability.

Completeness4/5

The core workflows for each advertised feed are covered: congressional trades, ETF flows, and insider buys/sells with explicit direction separation. Minor gaps exist, such as House filings being metadata-only and no feed-discovery/metadata tool, but these do not block the intended use cases.

Resources