bls_latest

Pack: bls · Endpoint: https://gateway.pipeworx.io/bls/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/bls_latest for the schema, then POST the same URL with its arguments for the data.

Get the most recent data point for a BLS series. Returns latest value and date. Use when you need current figures without historical context.

Parameters

NameTypeRequiredDescription
series_idstringyesBLS series ID (e.g., “LNS14000000”)
_apiKeystringnoBLS registration key (optional)

Example call

Arguments

{
  "series_id": "LNS14000000"
}

curl

curl -X POST https://gateway.pipeworx.io/bls/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bls_latest","arguments":{"series_id":"LNS14000000"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('bls_latest', {
  "series_id": "LNS14000000"
});

Response shape

FieldTypeDescription
series_idstringBLS series identifier
statusstring
titlestringSeries title from catalog, or null if not found
latestobjectMost recent data point
Full JSON Schema
{
  "type": "object",
  "properties": {
    "series_id": {
      "type": "string",
      "description": "BLS series identifier"
    },
    "status": {
      "type": "string"
    },
    "title": {
      "type": "string",
      "description": "Series title from catalog, or null if not found"
    },
    "latest": {
      "type": "object",
      "properties": {
        "year": {
          "type": "string",
          "description": "Year of the latest data point"
        },
        "period": {
          "type": "string",
          "description": "Period code (e.g., M01 for January)"
        },
        "period_name": {
          "type": "string",
          "description": "Human-readable period name"
        },
        "date": {
          "type": "string"
        },
        "value": {
          "type": "string",
          "description": "Latest value"
        }
      },
      "description": "Most recent data point"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026