Skip to main content
Glama
kevinkda

fred-macro-mcp

by kevinkda

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
LOG_LEVELNoLog verbosity.WARNING
FRED_API_KEYYes32-char FRED API key (required). Never logged.
FRED_CACHE_BYPASSNoForce fresh reads while still writing.false
FRED_CACHE_BACKENDNomemory (zero-dep) or clickhouse (opt-in extra).memory
FRED_CACHE_ENABLEDNoOpt-in read-through cache.false
FRED_CLICKHOUSE_URLNoDSN used only when backend is clickhouse.
FRED_RATE_LIMIT_PER_MINNoClient throttle (≤ FRED's 120/min ceiling).120

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_seriesB

Return the observation series for a FRED economic data series.

series_id is a FRED identifier (e.g. GDP, CPIAUCSL, UNRATE, DGS10). start / end optionally bound the window as ISO YYYY-MM-DD dates.

search_seriesA

Search the FRED catalog for series matching query keywords.

Returns the most popular matches with their frequency, units, and observation range so an agent can pick the right series_id.

get_series_latestA

Return the single most-recent observation for a FRED series.

Cheaper than get_series when an agent only needs the current value of a macro indicator.

get_release_calendarA

Return upcoming FRED data releases in the next days days.

Useful for macro overlay: knowing when the next CPI / GDP / jobs print lands lets an agent flag event risk on the calendar.

health_checkA

Local health probe. Never calls FRED.

get_server_infoA

Local server metadata. Never calls FRED.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: release calendar, series data retrieval (full or latest), search, and server info/health. No overlapping functionality.

Naming Consistency5/5

All tools use consistent snake_case with a verb_noun pattern (get_*, search_*, health_check). The pattern is predictable and easy to understand.

Tool Count5/5

6 tools is well-scoped for a FRED macro data server. It covers essential operations without being too many or too few.

Completeness4/5

Covers search, retrieval (full and latest), release calendar, and server metadata. Minor gap: no bulk data retrieval for multiple series in one call, but the core workflow is complete.

Maintenance

ActivityInactive
ResponsivenessNo issues