warn_recent

Pack: warn-notices · Endpoint: https://gateway.pipeworx.io/warn-notices/mcp

Most recent US WARN Act layoff and plant-closure notices across every covered state, newest first — the earliest public signal that an employer is cutting jobs, filed roughly 60 days before the layoff takes effect. Answers “recent layoff notices”, “who announced layoffs this month”, “latest WARN filings in Texas”. Returns employer, site, worker count and effective date, plus states_covered so a quiet month is distinguishable from a coverage gap.

Parameters

NameTypeRequiredDescription
daysnumbernoLook back this many days from today by WARN notice date (default 30).
statestringnoTwo-letter state code to restrict to, e.g. “NY”. Omit for all covered states.
limitnumbernoMax notices to return (default 50, max 500).

Example call

Arguments

{
  "days": 30
}

curl

curl -X POST https://gateway.pipeworx.io/warn-notices/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"warn_recent","arguments":{"days":30}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('warn_recent', {
  "days": 30
});

More examples

{
  "days": 90,
  "state": "CA"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026