Skip to main content
Glama

Fintel Discovery — Financial Intelligence for AI Agents

Get FRED Series Data

GetFredSeriesData
Read-onlyIdempotent
    Fetch time-series observation data from FRED for a specific economic
    series. Returns date + value pairs with series metadata (title, units,
    frequency). Use SearchFredSeries first if you don't know the series ID.

    Use this tool when:
    - You need historical macro data (rates, inflation, GDP, unemployment)
    - You want to provide macro context alongside advisor or fund data
    - You are comparing economic conditions across time periods
    - You need the current value of a key economic indicator

    Pass observation_start / observation_end to limit the date range.
    Pass frequency to aggregate (e.g. 'm' for monthly, 'q' for quarterly).

    Requires FRED_API_KEY environment variable (free at fred.stlouisfed.org).
    Source: Federal Reserve Bank of St. Louis FRED API.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive hints, so the description does not need to re-litigate safety. It adds meaningful context beyond those hints by stating the required FRED_API_KEY environment variable, the data source, and the response format of date/value pairs plus series metadata. Rate limits and error behavior are not mentioned, but this is a read-only data fetch with solid annotation coverage.

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

Conciseness4/5

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

The description is well structured with a lead sentence, a bulleted use-case list, parameter hints, and an environment requirement. It is slightly longer than necessary because the four bullets overlap in meaning, but every section adds useful operational context.

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

Completeness3/5

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

The description gives the important operational details: what data to expect, when to use the tool, which parameters matter most, and the API key requirement. However, it does not address the limit default, the max observation count, the odd mix of unrelated schema parameters, or possible failure modes. Since an output schema is available, the return-value gap is reduced, but the schema's confusing parameter surface leaves some ambiguity.

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

Parameters2/5

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

Schema description coverage is reported as 0%, so the description must carry the burden of explaining parameters, but it only mentions observation_start, observation_nd, and frequency. It does not clarify the limit parameter, date-format expectations, or the large set of fin-specific fields present in the schema such as wholesaler_ids, exclude_filers, source_resource_id, and optional_additional_filters. The description covers the core FRED parameters but leaves many schema fields unexplained.

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 states a specific action and resource: 'Fetch time-series observation data from FRED for a specific economic series.' It distinguishes itself from the sibling tool SearchFredSeries by explicitly instructing agents to use SearchFredSeries first when the series ID is unknown. The return shape is also previewed, which makes the tool's purpose immediately unambiguous.

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

Usage Guidelines5/5

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

The description provides an explicit 'Use this tool when' list covering macro data, advisor/fund context, time-period comparisons, and current indicator values. It also gives a clear conditional routing instruction: use SearchFredSeries first if the series ID is unknown. This is sufficient guidance for an agent to decide when to invoke this tool versus the main sibling.

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

A3.9/5.0
Disambiguation4/5

Most tools target a distinct resource and action, with clear separation between search and detail tools (e.g., SearchIAPDFirm vs GetIAPDFirmDetail, SearchBrokerCheck vs GetBrokerCheckDetail). A few pairs like SearchBrokerCheck and SearchBrokerCheckFirm could cause momentary confusion, but descriptions clarify individual vs firm scope.

Naming Consistency4/5

The dominant pattern is consistent: Search* for discovery, Get* for retrieval, with CamelCase throughout. Minor deviations like LookupTicker and MapInstrumentIds introduce different verbs, and SearchBrokerCheck does not explicitly signal 'individual' unlike SearchBrokerCheckFirm, but the overall convention remains predictable.

Tool Count2/5

With 32 tools, the surface is quite heavy and exceeds the 25+ threshold for 'too many.' While the financial intelligence domain is broad, several search/detail pairs and overlapping data-source tools could be consolidated to reduce cognitive load for agents.

Completeness4/5

The toolset covers major workflows well: 13F holdings, fund fee comparison, advisor due diligence, macro data, price history, options, and identifier mapping. Minor gaps exist, such as no standalone real-time quote tool, no news/sentiment data, and no direct CUSIP-to-company-name search, but these are workable around.

Resources