Skip to main content
ClaudeWave

MCP server for US WARN Act layoff notices — 61,320 notices, 48 states, 1988 to today, rebuilt daily. No API key, zero dependencies.

MCP ServersOfficial Registry0 stars0 forksPythonMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/20/2026
Install in Claude Code / Claude Desktop
Method: UVX (Python) · --from
Claude Code CLI
claude mcp add warn-mcp -- uvx --from
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "warn-mcp": {
      "command": "uvx",
      "args": ["--from"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# warn-mcp — US layoff data (WARN Act) as an MCP server

**61,345 mass-layoff notices · 48 states · 1988 → today · rebuilt every morning ·
no API key · zero dependencies.**

Every US state publishes the layoff notices employers must file under the
[WARN Act](https://en.wikipedia.org/wiki/Worker_Adjustment_and_Retraining_Notification_Act_of_1988),
and every state publishes them differently — a web page here, a pile of PDFs
there, a search form somewhere else. [WARN Feed](https://approjects-warn-act-notices.static.hf.space/)
scrapes all 48 of them daily and normalizes them into one schema. This is that
dataset wired into the [Model Context Protocol](https://modelcontextprotocol.io),
so Claude, Cursor, Continue or your own agent can ask questions like:

> *"Has Starbucks filed any WARN notices this year, and in which states?"*
> *"What layoffs were announced in the last two weeks in Texas?"*
> *"Which state had the most workers affected in 2026?"*
> *"Did any agency quietly change or delete a notice this week?"*

## Install

Nothing to build and nothing to install into your Python environment — the
server is standard library only.

**Claude Desktop — one file, no terminal:** download
[`warn-mcp.mcpb`](https://github.com/APVentureEngine/warn-mcp/releases/latest/download/warn-mcp.mcpb)
and drag it onto Claude Desktop's Settings → Extensions window. That bundle is
this repo's server plus a manifest; it needs a `python3` on your PATH and
nothing else. The same file is listed as the installable package for
`io.github.APProj/warn-mcp` in the
[MCP registry](https://registry.modelcontextprotocol.io/v0/servers?search=warn-mcp).

**Claude Desktop / Claude Code / anything that reads an `mcpServers` block:**

```json
{
  "mcpServers": {
    "warn": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/APVentureEngine/warn-mcp", "warn-mcp"]
    }
  }
}
```

Claude Code, one line:

```bash
claude mcp add warn -- uvx --from git+https://github.com/APVentureEngine/warn-mcp warn-mcp
```

No `uv`? Clone and run it with plain Python:

```bash
git clone https://github.com/APVentureEngine/warn-mcp && cd warn-mcp
python3 -m warn_mcp.server --selftest    # exercises every tool against live data
```

```json
{
  "mcpServers": {
    "warn": { "command": "python3", "args": ["-m", "warn_mcp.server"], "cwd": "/path/to/warn-mcp" }
  }
}
```

## Or run it over HTTP (Streamable HTTP transport)

The same six tools, same implementation, spoken over MCP's Streamable HTTP
transport instead of stdio — for clients that want a URL rather than a
subprocess, and for putting one shared instance behind your own team:

```bash
docker build -t warn-mcp . && docker run -p 8080:8080 warn-mcp
# -> http://localhost:8080/mcp   (and a short human page at http://localhost:8080/)
claude mcp add --transport http warn http://localhost:8080/mcp
```

No Docker? `python3 http/app.py` does the same thing — it is standard library
only, like everything else here. `PORT` selects the port, `/healthz` returns
`{"ok":true}`, and the server is stateless, so you can run as many replicas as
you like behind any load balancer.

It is deliberately keyless: the data underneath is public and read-only, the
server keeps no session state and stores nothing about callers. Do not bolt auth
onto a public deployment of it and then advertise it as this server.

## Tools

| Tool | What it answers |
|---|---|
| `search_layoff_notices` | Employer / state / date-range / minimum-headcount search across the whole archive. Returns matched notice count, total workers affected, and the newest matches. |
| `latest_layoff_notices` | The rolling ~14-day feed of newly published notices, newest first, optionally one state. |
| `employer_layoff_history` | One employer's whole WARN record back to 1988 — notices, workers affected, every state it filed in, first and latest activity. |
| `state_layoff_totals` | Monthly notice counts and workers affected: a national leaderboard by state, or one state's month-by-month series. |
| `agency_revisions` | The dataset's own change log: a field-level diff of consecutive daily builds — `amended` fields (headcounts, dates, locations…), `row_absent` notices, `row_returned` ones — each tagged with a mechanically-determined `cause_class`. Records the observation, not the cause. |
| `dataset_status` | Last rebuild time, states flagged stale, license, and the raw endpoints — call it before quoting a number. |

Every answer carries `as_of` and `source`, because a layoff figure with no date
and no attribution is not worth repeating. Where the data is weaker than it
looks, the tool says so in a `caveat` field rather than letting the model round
it off: headcount is only counted where the agency published one, employer names
are normalized by an auditable rule table rather than a corporate-registry join,
and `row_absent` in the revision log means the agency stopped publishing a
notice — not that the layoff was cancelled.

## Why an MCP server and not just the CSV

The CSV is right there and it is free — [take it](https://github.com/APVentureEngine/warn-act-notices).
This exists for the case where a model needs one specific answer out of a 9 MB
file: the tools do the filtering and the arithmetic locally, so an agent spends a
few hundred tokens instead of a context window, and it gets the freshness stamp
with the answer.

`agency_revisions` is the part you cannot reconstruct from any single copy of
the data. A state agency editing its own WARN page leaves no changelog, so a
mirror taken today simply *is* today's truth. WARN Feed diffs yesterday's
build against today's and keeps the field-level log — **638 logged changes
since 2026-08-31**, including 274 notices that stopped appearing. One honest
caveat, stated in every response: a logged change can come from the agency
amending or withdrawing a notice *or* from an improvement to this project's
parser, and the log does not guess which — `cause_class` labels only what is
mechanically distinguishable (`field_populated`, `field_cleared`,
`format_only`, `value_changed`, `unknown`).

## Caching and network

Tools read the free public WARN Feed endpoints over HTTPS and cache them on disk
(`~/.cache/warn-mcp`, override with `WARN_MCP_CACHE`) with ETag revalidation, so
ten tool calls in a row make at most one request per file per hour
(`WARN_MCP_TTL`, seconds). If the network is down and a cached copy exists, the
cached copy is served and its own `as_of` tells you how old it is.

There is no key, no signup, no rate limit and no telemetry — this server sends
nothing anywhere except plain GETs for public files.

## Data, license, attribution

Data is compiled from official state WARN publications and released under
**CC BY 4.0** — credit "WARN Feed" and link back. This server's code is MIT.
Not affiliated with any state agency or the US Department of Labor; state
agencies' own postings are the authority and are occasionally revised (see
`agency_revisions`).

- Dataset repo: <https://github.com/APVentureEngine/warn-act-notices>
- Raw HTTP API and per-state files: <https://approjects-warn-act-notices.static.hf.space/api.html>
- Hugging Face: <https://huggingface.co/datasets/APProjects/us-warn-act-layoffs-notices-daily>

## The one paid thing

Everything above is free and stays free. If you need to be *told* — your own
list of employers matched against every daily refresh and pushed to a private
alert page, a calendar feed, RSS, or a Slack / Discord / Teams webhook — that is
[WARN Watch, $49/year](https://approjects-warn-act-notices.static.hf.space/watch.html),
with a free 30-day trial and no card. It is the only thing here that costs money.

Bugs, a state we should cover, a tool you want:
[open an issue](https://github.com/APVentureEngine/warn-mcp/issues).
ai-agentsclaudedatasethr-techlabor-marketlayoffsllm-toolsmcpmcp-servermodel-context-protocolmodelcontextprotocolopen-datapythonus-economywarn-act

What people ask about warn-mcp

What is APVentureEngine/warn-mcp?

+

APVentureEngine/warn-mcp is mcp servers for the Claude AI ecosystem. MCP server for US WARN Act layoff notices — 61,320 notices, 48 states, 1988 to today, rebuilt daily. No API key, zero dependencies. It has 0 GitHub stars and its last recorded update is dated 2026-09-19.

How do I install warn-mcp?

+

You can install warn-mcp by cloning the repository (https://github.com/APVentureEngine/warn-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is APVentureEngine/warn-mcp safe to use?

+

Our security agent has analyzed APVentureEngine/warn-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains APVentureEngine/warn-mcp?

+

APVentureEngine/warn-mcp is maintained by APVentureEngine. The last recorded GitHub activity is dated 2026-09-19, with 0 open issues.

Are there alternatives to warn-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy warn-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: APVentureEngine/warn-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/apventureengine-warn-mcp)](https://claudewave.com/repo/apventureengine-warn-mcp)
<a href="https://claudewave.com/repo/apventureengine-warn-mcp"><img src="https://claudewave.com/api/badge/apventureengine-warn-mcp" alt="Featured on ClaudeWave: APVentureEngine/warn-mcp" width="320" height="64" /></a>

More MCP Servers

warn-mcp alternatives