CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
pipeworx-io avatar

Bls

pipeworx-io/mcp-bls
HTTPregistry active
Summary

Connects Claude to the Bureau of Labor Statistics public data API v2, giving you programmatic access to employment figures, inflation metrics, wage data, and other economic statistics. Part of the Pipeworx gateway ecosystem, which means you can either use it standalone or access it alongside 673+ other data sources through a unified endpoint. The ask_pipeworx tool lets you query BLS data in plain English rather than crafting specific API calls. Useful when you're analyzing economic trends, building reports that need official labor statistics, or answering questions that require current unemployment rates, CPI numbers, or occupational employment data.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →

BLS — Bureau of Labor Statistics

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 1476+ live data sources.

Why this matters for AI agents

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.

Auth

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.

Series ID structure

BLS series IDs encode survey, area, sector, and data type. Examples:

Series IDWhat it is
LNS14000000National unemployment rate (seasonally adjusted)
CES0000000001Total nonfarm employment (national)
CUUR0000SA0CPI all items, US city average, not seasonally adjusted
LAUMT080000000000003Denver MSA unemployment rate
WPSFD49207PPI for finished goods

Don't try to construct IDs from scratch — use bls_search or bls_popular_series.

Update cadence

DataRelease timing
Employment situation (national + state)First Friday of the month
CPIMid-month (around the 10th-15th)
PPIMid-month, day after CPI
Metro unemployment (LAUS)~3 weeks after the reference month
ProductivityQuarterly, ~5 weeks after quarter end

Pipeworx caches BLS responses with TTLs aligned to release schedules.

Common pitfalls

  • 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.
  • Annual averages vs monthly. Some IDs return only annual data; others return monthly. Read the metadata before plotting trends.
  • State and metro coverage. Not every series exists at every geography. Smaller metros have larger lags and more imputed values.
  • 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).

Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "bls": {
      "url": "https://gateway.pipeworx.io/bls/mcp"
    }
  }
}

What this endpoint actually serves

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:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}

Both URLs reach the same gateway and the same 1476+ data sources. The only difference is which pack's tools are listed directly; ask_pipeworx reaches all of them from either one.

Using with ask_pipeworx

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:

ask_pipeworx({ question: "your question about Bls data" })

The gateway picks the right tool and fills the arguments automatically.

More

  • Docs and guides
  • pipeworx.io

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Categories
Data & Analytics
Registryactive
TransportHTTP
UpdatedApr 22, 2026
View on GitHub

More from pipeworx-io

  • Bnm My
  • Boe Uk
  • Boi Il
  • Bpstat Pt
  • Brapi
  • Brave Search
  • Brawl Stars
  • Brreg No
  • Bundesbank De
  • Bungie
  • Buzzword Density
  • Carbon Intensity Uk
  • caruon
  • Cataas
  • catfacts
  • Cbs Il
  • Cbs Nl
  • Cdec Ca
  • Censtatd Hk
  • Census
  • Census Trade
  • Chainlist
  • Chaos Index
  • Chargebee

Related Data & Analytics MCP Servers

View all →
pipeworx-io avatar
Bts

io.github.pipeworx-io/bts

U.S. Bureau of Transportation Statistics (BTS) — data.bts.gov open-data portal (Socrata platform).
pipeworx-io avatar
Calendly

io.github.pipeworx-io/calendly

Calendly MCP Pack — wraps the Calendly API v2 for scheduling data.
pipeworx-io avatar
Cdec Ca

io.github.pipeworx-io/cdec-ca

California Data Exchange Center (CDEC) hydrology, reservoirs, snow water
pipeworx-io avatar
Celestrak

io.github.pipeworx-io/celestrak

CelesTrak MCP — satellite orbital elements (TLE / GP data) for any tracked object.
pipeworx-io avatar
Censtatd Hk

io.github.pipeworx-io/censtatd-hk

Hong Kong Census and Statistics Department (C&SD) open-data MCP.
pipeworx-io avatar
Census Trade

io.github.pipeworx-io/census-trade

Census Trade MCP — US Census Bureau International Trade data