warn_company

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

Every WARN Act layoff and closure notice one employer has filed, across all covered states, with a per-state and per-year breakdown. Answers “has Tesla filed layoff notices”, “how many workers has Amazon laid off by WARN filing”, “which sites did this company close”. Use to trace one employer’s layoff history rather than browsing a date range.

Parameters

NameTypeRequiredDescription
companystringyesEmployer name, free text — “Tesla” matches “Tesla, Inc.” and “TESLA MOTORS”.
limitnumbernoMax notices to return (default 200, max 500).

Example call

Arguments

{
  "company": "Genentech"
}

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_company","arguments":{"company":"Genentech"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('warn_company', {
  "company": "Genentech"
});

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