Bls

live Data

BLS MCP — Bureau of Labor Statistics public data API (v2)

4 tools
0ms auth
free tier 50 calls/day

Tools

bls_get_series

Get time series data from the Bureau of Labor Statistics for one or more series. Supports employment, CPI/inflation, wages, productivity, and housing-related series.

No parameters required.

Try it
bls_latest

Get just the most recent data point for a BLS series. Useful for quick current-value lookups.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/bls/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/bls/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"bls_get_series","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("bls_get_series", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("bls mcp — bureau of labor statistics public data api (v2)");

Related compound tools

These combine Bls with other data sources in a single call:

Trade Intel MCP — Compound tools that chain Comtrade, Census, Treasury,

3 tools — trade_bilateral_analysis, trade_country_profile, trade_macro_dashboard

Housing Intel MCP — Meta-pack that chains FRED, BLS, ATTOM, and HUD APIs

7 tools — housing_market_snapshot, housing_property_report, housing_rental_analysis, housing_affordability_check, housing_employment_outlook, housing_signal_scan, housing_mortgage_history