{
  "markdown": "# BLS — Bureau of Labor Statistics\n\nThe U.S. Bureau of Labor Statistics's data warehouse. Employment, unemployment, wages, prices (CPI/PPI), productivity, occupational projections — the official US labor and price data. National, state, and metro level. Free with a registered API key.\n\nPart of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1504+ live data sources.\n\n## Why this matters for AI agents\n\nAnything labor-market or inflation-related at the official level: BLS. Where FRED gives you headline series, BLS gives you the underlying detail (occupation-level, industry-level, MSA-level). Agents researching local economic conditions, sector wages, or specific CPI components reach BLS directly.\n\nThree core flows:\n\n**1. Look up a series.** \"What's the metro Denver unemployment rate?\" → `bls_search({query: \"Denver unemployment\"})` → series IDs. Then `bls_get_series({series_id})` for values.\n\n**2. Latest value.** \"What's national unemployment right now?\" → `bls_latest({series_id: \"LNS14000000\"})` → most recent observation.\n\n**3. Browse popular series.** \"What does BLS publish?\" → `bls_popular_series` → curated list of high-traffic IDs.\n\n**4. Local-area unemployment by place name.** \"What's the unemployment rate in Wake County, NC?\" or \"Cary, North Carolina\" or \"Fargo-Moorhead MSA\" → `bls_local_unemployment({place, state?})`. This is the tool for LAUS (Local Area Unemployment Statistics) lookups by county / metro area / city — `bls_search`'s curated catalog has no local-area entries, and constructing a LAUS series ID by hand requires a place → BLS area-code crosswalk (~8,000 US counties/metros/cities) that isn't something to guess at. `bls_local_unemployment` resolves the name against that crosswalk itself (bundled from BLS's `la.area` reference file), returns candidates when the name is ambiguous, and falls back to the county — saying so explicitly — when a city is below the LAUS city-reporting threshold.\n\n## Reading the response\n\n`bls_get_series` returns each series **newest first** — the payload says so in\n`observation_order`, so you don't have to infer the direction from the dates.\n`count` is the number of points for that series, and BLS returns every point in\nthe requested year range, so it is never a total sitting beside a shorter list.\n\n## Auth\n\nBLS API requires a free key from https://www.bls.gov/developers/. Without it, calls are throttled to ~25/day per IP. With a key, it's 500/day. Pass via `_apiKey` per call.\n\n## Series ID structure\n\nBLS series IDs encode survey, area, sector, and data type. Examples:\n\n| Series ID | What it is |\n|---|---|\n| `LNS14000000` | National unemployment rate (seasonally adjusted) |\n| `CES0000000001` | Total nonfarm employment (national) |\n| `CUUR0000SA0` | CPI all items, US city average, not seasonally adjusted |\n| `LAUMT080000000000003` | Denver MSA unemployment rate |\n| `WPSFD49207` | PPI for finished goods |\n\nDon't try to construct national/state/industry IDs from scratch — use `bls_search` or\n`bls_popular_series`. For LAUS local-area IDs (county/MSA/city) specifically, use\n`bls_local_unemployment({place, state?})` — it resolves the place name to the correct\narea code for you.\n\n## Update cadence\n\n| Data | Release timing |\n|---|---|\n| Employment situation (national + state) | First Friday of the month |\n| CPI | Mid-month (around the 10th-15th) |\n| PPI | Mid-month, day after CPI |\n| Metro unemployment (LAUS) | ~3 weeks after the reference month |\n| Productivity | Quarterly, ~5 weeks after quarter end |\n\nPipeworx caches BLS responses with TTLs aligned to release schedules.\n\n## Common pitfalls\n\n- **Seasonal adjustment.** Same series exists in seasonally-adjusted (SA) and not-seasonally-adjusted (NSA) variants. Check the series ID prefix (`LNS` = SA, `LNU` = NSA). Mixing them is the most common analyst error.\n- **Annual averages vs monthly.** Some IDs return only annual data; others return monthly. Read the metadata before plotting trends.\n- **State and metro coverage.** Not every series exists at every geography. Smaller metros have larger lags and more imputed values.\n- **Inflation vs CPI.** \"Inflation\" usually means CPI year-over-year change. To get YoY, request 13 months and compute, or use FRED's `CPIAUCSL` with the `pc1` units transformation (which does it for you).\n\n## Quick Start\n\nAdd to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):\n\n```json\n{\n  \"mcpServers\": {\n    \"bls\": {\n      \"url\": \"https://gateway.pipeworx.io/bls/mcp\"\n    }\n  }\n}\n```\n\n### What this endpoint actually serves\n\n`tools/list` at `https://gateway.pipeworx.io/bls/mcp` returns the tools in the table\nabove **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,\n`discover_tools`, `search_within`, `remember`/`recall` and the rest of the\ngateway-wide set. So the tool count you see is larger than this table: a\nsingle-pack endpoint currently lists roughly 30 shared tools alongside the\npack's own. The connection's `initialize` response states its exact scope, and\nis the authoritative answer for a given day.\n\nThis is deliberate, not multiplexing by accident. The meta-tools are what let a\nscoped connection answer a question this pack does not cover — via\n`ask_pipeworx`, which routes across the whole catalog — without you adding a\nsecond MCP server. There is currently no way to mount a pack endpoint without\nthem; if the extra schemas cost you more context than the routing is worth,\nconnect to the full gateway once rather than to several pack endpoints.\n\nOr connect to the full Pipeworx gateway to get every pack's tools listed\ndirectly, instead of just this one's:\n\n```json\n{\n  \"mcpServers\": {\n    \"pipeworx\": {\n      \"url\": \"https://gateway.pipeworx.io/mcp\"\n    }\n  }\n}\n```\n\nBoth URLs reach the same gateway and the same 1504+ data sources. The\nonly difference is which pack's tools are listed **directly**; `ask_pipeworx`\nreaches all of them from either one.\n\n## Using with ask_pipeworx\n\nInstead of calling tools directly, you can ask questions in plain English —\nthis works on the pack endpoint above as well as on the full gateway:\n\n```\nask_pipeworx({ question: \"your question about Bls data\" })\n```\n\nThe gateway picks the right tool and fills the arguments automatically.\n\n## More\n\n- [Docs and guides](https://pipeworx.io/docs)\n- [pipeworx.io](https://pipeworx.io)\n\n## License\n\nMIT\n",
  "bytes": 6319,
  "sha": "df4fb94b9638a362d0522385f81c2795ba66af5a42b427eae9d3b17848829741",
  "repo_slug": "pipeworx-io/mcp-bls",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_pipeworx_io_bls_bab3e03d/readme"
}