Twinkle HubTwinkle Hub
Sign in

📌 2026-08-17 added: ⚖️ Taiwan statute time machine — historical article text · revision history · full-text search · citation graph (935 datasets · 35,454+ rows)

View full changelog →

US FRED release (report bundle)

us_get_fred_release

TW-specificMIT

**關鍵字 / Keywords**: 美聯儲 經濟報告 FRED release report Employment Situation H.15 CPI PPI JOLTS NFP employment situation consumer price producer price interest rate report

Scope: US Federal Reserve Economic Data (FRED) · one "release"
— a report bundle (e.g. Employment Situation, H.15 Selected
Interest Rates, Consumer Price Index) with descriptive metadata
and the full list of series inside it.

Endpoints:
    https://api.stlouisfed.org/fred/release?release_id=…
    https://api.stlouisfed.org/fred/release/series?release_id=…

Args:
    release_id: numeric FRED release id. Examples:
                10  · H.15 Selected Interest Rates
                50  · Employment Situation (NFP / unemployment)
                11  · Consumer Price Index
                14  · Producer Price Index
                53  · Gross Domestic Product
                Discover ids at fred.stlouisfed.org/releases or
                infer from series metadata (each series is
                tagged with its parent release).
    include_series: if True (default), also fetch the release's
                    series list (compact summaries).
    series_limit: cap on the series list (default 100, hard cap
                  1000).

Returns dict with `release_id`, `name`, `link` (press release
page), `press_release` (bool), `notes`, plus optional `series:
[...]` when include_series=True (each row has series_id, title,
units, frequency, last observation date, popularity, and
per-row original_url).

Requires US_FRED_API_KEY. Same license warning as
us_get_fred_series_observations.

Input schema

{
  "properties": {
    "release_id": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "string"
        }
      ],
      "title": "Release Id"
    },
    "include_series": {
      "default": true,
      "title": "Include Series",
      "type": "boolean"
    },
    "series_limit": {
      "default": 100,
      "title": "Series Limit",
      "type": "integer"
    }
  },
  "required": [
    "release_id"
  ],
  "title": "us_get_fred_releaseArguments",
  "type": "object"
}

How to call

Once your Twinkle Hub MCP client is configured, your agent will see us_get_fred_release. Just ask it to call — example:

# Ask Claude / any MCP client:
請用 us_get_fred_release 處理 "…"。

# It will call:
us_get_fred_release(input="…")

Haven't set up a client yet?

Claude Desktop in 3 minutes — download the .mcpb and double-click, or see docs for other clients.

See user docs