MCP Hub
Back to servers

BLS (Bureau of Labor Statistics) MCP Server

Provides access to U.S. labor market data including employment statistics, Consumer Price Index inflation rates, and wage information. Users can query specific time series data or use shortcuts for common economic indicators like unemployment and industry-specific employment.

Updated
Jan 28, 2026

BLS (Bureau of Labor Statistics) MCP Server

Access U.S. labor market data including employment, unemployment, wages, inflation (CPI), and industry statistics.

Data Available

  • Employment/Unemployment - National and state-level employment statistics
  • Consumer Price Index (CPI) - Inflation data by category
  • Wages - Average hourly/weekly earnings by industry
  • Quarterly Census of Employment and Wages (QCEW) - Employer-level data
  • Occupational Employment - Employment and wages by occupation

Setup

  1. Get a free API key at: https://data.bls.gov/registrationEngine/
  2. Add to your MCP config:
{
  "bls": {
    "command": "node",
    "args": ["/path/to/bls/dist/index.js"],
    "env": {
      "BLS_API_KEY": "your-api-key"
    }
  }
}

Tools

query

Fetch BLS time series data for up to 50 series.

ParameterRequiredDescription
seriesIdsYesArray of series IDs (max 50)
startYearYesStart year (e.g., "2020")
endYearYesEnd year (e.g., "2024")
calculationsNoInclude percent changes (default: false)
annualAverageNoInclude annual averages (default: false)

Example: Get unemployment rate and CPI

seriesIds: ["LNS14000000", "CUUR0000SA0"]
startYear: "2020"
endYear: "2024"

series_guide

Show common BLS series IDs and how to construct them.

ParameterRequiredDescription
categoryNo"CPI", "UNEMPLOYMENT", "EMPLOYMENT", "QCEW", or "ALL"

get_cpi

Shortcut for Consumer Price Index (inflation) data.

ParameterRequiredDescription
startYearYesStart year
endYearYesEnd year
itemsNo"all", "food", "housing", "medical", "transport", or comma-separated

Example: Get CPI for food and housing

startYear: "2020"
endYear: "2024"
items: "food,housing"

get_unemployment

Shortcut for national unemployment rate.

ParameterRequiredDescription
startYearYesStart year
endYearYesEnd year

get_employment

Shortcut for employment by major industry sector.

ParameterRequiredDescription
startYearYesStart year
endYearYesEnd year
sectorNo"total", "private", "manufacturing", "retail", "healthcare", "all", etc.

Example: Get healthcare employment

startYear: "2020"
endYear: "2024"
sector: "healthcare"

Common Series IDs

Series IDDescription
LNS14000000Unemployment Rate (Seasonally Adjusted)
LNS11000000Civilian Labor Force
CES0000000001Total Nonfarm Employment
CUUR0000SA0CPI - All Urban Consumers
CUUR0000SAF1CPI - Food
CUUR0000SAH1CPI - Housing
CUUR0000SAMCPI - Medical Care

Rate Limits

  • Without API key: 25 requests/day, 10 years of data
  • With API key: 500 requests/day, 20 years of data

Documentation

Reviews

No reviews yet

Sign in to write a review