BLS MCP โ Bureau of Labor Statistics public data API (v2)
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
The 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.
Part of Pipeworx โ an MCP gateway connecting AI agents to 1504+ live data sources.
Anything 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.
Three core flows:
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.
2. Latest value. "What's national unemployment right now?" โ bls_latest({series_id: "LNS14000000"}) โ most recent observation.
3. Browse popular series. "What does BLS publish?" โ bls_popular_series โ curated list of high-traffic IDs.
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.
bls_get_series returns each series newest first โ the payload says so in
observation_order, so you don't have to infer the direction from the dates.
count is the number of points for that series, and BLS returns every point in
the requested year range, so it is never a total sitting beside a shorter list.
BLS 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.
BLS series IDs encode survey, area, sector, and data type. Examples:
| Series ID | What it is |
|---|---|
LNS14000000 | National unemployment rate (seasonally adjusted) |
CES0000000001 | Total nonfarm employment (national) |
CUUR0000SA0 | CPI all items, US city average, not seasonally adjusted |
LAUMT080000000000003 | Denver MSA unemployment rate |
WPSFD49207 | PPI for finished goods |
Don't try to construct national/state/industry IDs from scratch โ use bls_search or
bls_popular_series. For LAUS local-area IDs (county/MSA/city) specifically, use
bls_local_unemployment({place, state?}) โ it resolves the place name to the correct
area code for you.
| Data | Release timing |
|---|---|
| Employment situation (national + state) | First Friday of the month |
| CPI | Mid-month (around the 10th-15th) |
| PPI | Mid-month, day after CPI |
| Metro unemployment (LAUS) | ~3 weeks after the reference month |
| Productivity | Quarterly, ~5 weeks after quarter end |
Pipeworx caches BLS responses with TTLs aligned to release schedules.
LNS = SA, LNU = NSA). Mixing them is the most common analyst error.CPIAUCSL with the pc1 units transformation (which does it for you).Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
tools/list at https://gateway.pipeworx.io/bls/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools โ ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover โ via
ask_pipeworx, which routes across the whole catalog โ without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
Both URLs reach the same gateway and the same 1504+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English โ this works on the pack endpoint above as well as on the full gateway:
The gateway picks the right tool and fills the arguments automatically.
MIT
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/bls)<a href="https://allmcps.com/mcp/bls"><img src="https://allmcps.com/api/badge/bls?style=directory" alt="Bls on AllMCPs" /></a>