Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@BLS MCPWhat's the latest Consumer Price Index (CPI) data?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
BLS MCP
An MCP (Model Context Protocol) server that wraps the Bureau of Labor Statistics Public Data API v2, letting Claude query U.S. labor statistics — employment, unemployment, wages, CPI, and more — directly from a conversation.
Disclaimer: This project is an independent, unofficial tool and is not affiliated with, endorsed by, or associated with the U.S. Bureau of Labor Statistics, the U.S. Department of Labor, or any government agency. All data is fetched in real time from the publicly available
api.bls.govAPI. The accuracy, completeness, and timeliness of the data are the sole responsibility of that API. This tool is provided for informational and research purposes only. Nothing returned by this server constitutes legal, financial, economic, or policy advice. Use responsibly and in accordance with applicable laws.
API status: The BLS Public Data API is at v0.0.2-beta and subject to change without notice. Tool behaviour may change as the upstream API evolves.
Available Tools
Tool | Endpoint | Description |
|
| Retrieve data for a single time series for the past three years |
|
| Retrieve the most recent data point for a series |
|
| Retrieve data for one or more series with optional parameters |
|
| List the 25 most popular BLS series, optionally filtered by survey |
|
| List all BLS surveys with abbreviations and names |
|
| Retrieve metadata for a single BLS survey |
Tool Parameters
get_single_series / get_latest_series
Parameter | Type | Description |
| string | BLS series ID (uppercase, digits, |
get_multiple_series
Parameter | Type | Required | Description |
| string[] | Yes | Array of BLS series IDs (1–50) |
| string | No | Start year in |
| string | No | End year in |
| boolean | No | Include catalog data (requires API key) |
| boolean | No | Include net/percent change calculations (requires API key) |
| boolean | No | Include annual averages (requires API key) |
| boolean | No | Include aspect data (requires API key) |
get_popular_series
Parameter | Type | Required | Description |
| string | No | 2-letter survey abbreviation (e.g. |
get_survey
Parameter | Type | Required | Description |
| string | Yes | 2-letter survey abbreviation (e.g. |
get_all_surveys — no parameters.
Series ID Format
BLS series IDs may contain uppercase letters, digits, underscores (_), dashes (-), and hashes (#). Lowercase letters and other special characters are not accepted. Examples:
LAUCN040010000000005— Local Area UnemploymentCUUR0000SA0— Consumer Price IndexCES0000000001— Current Employment StatisticsOEUN000000056--5747213213— Occupational Employment
Use get_popular_series or get_all_surveys to discover valid series IDs and survey abbreviations.
Registered vs. Unregistered Access
The BLS API works without an API key, but with reduced limits:
Unregistered | Registered | |
Daily query limit | 25 | 500 |
Series per query | 25 | 50 |
Year range | 10 years | 20 years |
Optional parameters | No | catalog, calculations, annual averages, aspects |
Register for a free API key at https://data.bls.gov/registrationEngine/ and pass it via the BLS_API_KEY environment variable.
Prerequisites
Node.js 18 or later
npm 9 or later
Claude Desktop (or any MCP-compatible client)
Installation
git clone https://github.com/larasrinath/bls_mcp.git
cd bls_mcp
npm install
npm run buildThe compiled server lands in ./dist/index.js.
Claude Desktop Configuration
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
Add the following block (adjust the path to match your machine):
{
"mcpServers": {
"bls": {
"command": "node",
"args": ["/absolute/path/to/bls_mcp/dist/index.js"],
"env": {
"BLS_API_KEY": "your-registration-key-here"
}
}
}
}The env block is optional — omit it to use the API without a key (lower rate limits apply).
macOS/Linux example:
"args": ["/Users/yourname/Projects/bls_mcp/dist/index.js"]Windows example:
"args": ["C:\\Users\\yourname\\Projects\\bls_mcp\\dist\\index.js"]Restart Claude Desktop after saving. The six BLS tools will appear in the tool picker.
Example Prompts
What is the current unemployment rate? (use
get_popular_seriesto find the series, thenget_latest_series)Show me CPI data for the last 3 years using series CUUR0000SA0.
Compare employment data for series CES0000000001 and CES3000000001 from 2020 to 2024.
What BLS surveys are available?
Tell me about the American Time Use survey.
What are the most popular Local Area Unemployment series?
Development
# Run directly without building (uses tsx, included in devDependencies)
npm run dev
# Rebuild after changes
npm run buildProject Structure
bls_mcp/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── client.ts # Typed BLS API client (axios)
│ └── tools/
│ ├── series.ts # get_single_series, get_latest_series, get_multiple_series
│ └── surveys.ts # get_popular_series, get_all_surveys, get_survey
├── package.json
├── tsconfig.json
├── LICENSE
└── README.mdRate Limits
The BLS API enforces daily query limits (25 for unregistered, 500 for registered users). If you hit a rate limit, the server surfaces a clear error message rather than crashing silently. Register for a free API key to increase your limits.
License
MIT — see LICENSE.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.