Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.llmquantdata.com/llms.txt

Use this file to discover all available pages before exploring further.

已暴露为 MCP 工具macro_indicator_search —— 在 Claude / Cursor / 任意 MCP 客户端中直接调用。详见 MCP Server 60 秒配置。
已上线   免费 · 0 credits

它为 Agent 做什么

macro_indicator_search 返回 LLMQuant Data 精选的约 50 个美国宏观指标 allowlist,源自 FRED —— 通胀(CPI / PCE)、利率(联邦基金利率、国债收益率)、就业(失业率、非农)、增长(GDP)、住房、流动性(M2、Fed 资产负债表)、金融条件、汇率等。它是 agent 的 catalog discovery 入口:在调用 macro_indicator_history / macro_indicator_snapshot 之前,先用它通过 categoryfrequency 或自由文本关键词浏览 allowlist,确定要用哪个 indicator alias 或 series_id 暴露完整 FRED 搜索 —— 只返回精选、已澄清署名的 allowlist。不传任何参数 = 列出全部。

返回值

data
MacroIndicatorCatalogItem[]
required
Curated catalog 条目,每条对应一个支持的指标。
meta.count
number
本次返回的条目数。
meta.creditsUsed
number
固定 0,catalog 浏览免费。
meta.sourceNotice
string
FRED API notice,按 FRED 条款显示。
200 OK · macro_indicator_search
{
  "data": [
    {
      "indicator": "us.cpi.headline",
      "series_id": "CPIAUCSL",
      "title": "Consumer Price Index for All Urban Consumers: All Items in U.S. City Average",
      "category": "Inflation",
      "frequency": "Monthly",
      "units": "Index 1982-1984=100",
      "observation_start": "1947-01-01",
      "observation_end": "2026-03-01",
      "copyright_status": "Public Domain: Citation requested",
      "attribution": "Source: U.S. Bureau of Labor Statistics via FRED"
    },
    {
      "indicator": "us.unemployment_rate",
      "series_id": "UNRATE",
      "title": "Unemployment Rate",
      "category": "Labor",
      "frequency": "Monthly",
      "units": "Percent",
      "observation_start": "1948-01-01",
      "observation_end": "2026-03-01",
      "copyright_status": "Public Domain: Citation requested",
      "attribution": "Source: U.S. Bureau of Labor Statistics via FRED"
    }
  ],
  "meta": {
    "count": 2,
    "creditsUsed": 0,
    "sourceNotice": "This product uses the FRED® API but is not endorsed or certified by the Federal Reserve Bank of St. Louis."
  }
}

说明

两步检索:先调 macro_indicator_search(免费)确定 alias,再调 macro_indicator_history(1 credit)取时间序列,或 macro_indicator_snapshot(1 credit)取最新值。catalog 不消耗 credit,可以放心多调几次。
优先用平台 indicator alias(us.cpi.headline),不要用裸 series_idCPIAUCSL)—— alias 在上游 FRED 重命名时仍然稳定,agent trace 里也更清晰。
仅 curated allowlist。 大约 50 个美国宏观 series。allowlist 之外的 FRED series ID 返回 404。需要的指标不在列表里,请提 issue —— 我们不做 full-FRED 代理。
catalog 行不是实时observation_end 反映我们已缓存的最后已知发布时间,不一定是今天。

直接调用

{
  "method": "tools/call",
  "params": {
    "name": "macro_indicator_search",
    "arguments": { "category": "Inflation", "limit": 10 }
  }
}

完整参数参考

相关接口

宏观历史时间序列

单个指标的时间序列(Recent 或 Range 模式)。

宏观指标快照

最新值 + 前值 + 涨跌(不返回完整序列)。