Skip to main content
ClaudeWave

NLRB MCP — US National Labor Relations Board case search: unfair labor

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/15/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-nlrb
Claude Code CLI
claude mcp add mcp-nlrb -- npx -y @pipeworx/mcp-nlrb
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-nlrb": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-nlrb"]
    }
  }
}
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.
Casos de uso

Resumen de MCP Servers

# @pipeworx/nlrb

US National Labor Relations Board case search — unfair labor practice charges
and union representation/election petitions (~516,000 cases), read live from
the NLRB's public case search on nlrb.gov.

Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1573+ live data sources.

## Tools

- `nlrb_search(query, case_type?, status?, filed_since?, filed_before?, region?, sort?, limit?, page?)` —
  finds cases by employer name, union name, or case number. Returns case
  number, case name, date filed, open/closed status, city and NLRB region, plus
  the total number of matching cases. Answers "is Starbucks facing an NLRB
  charge", "union election petitions at Trader Joe's".
- `nlrb_case(case_number)` — the full docket for one case: allegations charged
  under the National Labor Relations Act, status, location, region,
  participants (charged party, charging party, employer, union, and their legal
  representatives), the docket activity log, and — for representation cases
  that reached a count — the election tally (eligible voters, ballots counted,
  votes for and against the union).
- `nlrb_recent_filings(days?, case_type?, status?, region?, limit?)` — newest
  filings nationally over a recent window, newest first, with the total filed in
  that window.

## Auth

Keyless. No account, no registration, no key.

## Data sources

- <https://www.nlrb.gov/get-search-data/{term}/cases?sort=&rows=&page=> — the
  case search. A Drupal AJAX endpoint: it returns a command array whose `data`
  fields carry the rendered result HTML and whose trailing `invoke` command
  carries the total match count in `args[4]`.
- <https://www.nlrb.gov/case/{case-number}> — the server-rendered case docket.

### Things worth knowing before you touch this pack

- **The tab segment must be `cases`, plural.** `/get-search-data/{term}/case`
  is refused by the site's WAF with an HTTP **200** carrying a "Request
  Rejected" HTML page — a rejection that reads as a success unless you inspect
  the body. The pack checks for that page and returns
  `{ found: false, reason: 'blocked' }`.
- **The search term is a path segment**, so a `/` in it silently changes which
  endpoint you hit. Slashes are stripped and the term is URL-encoded.
- **Query parameters on `/search/case` are ignored.** The visible search form
  POSTs; `?search_term=Starbucks` returns the unfiltered 516k listing with the
  header still reading "for all". Only `/get-search-data/...` honours a term.
- **Filters ride as bracketed params**: `f[0]=case_type:C` (or `case_type:R`, or
  `(case_type:C OR case_type:R)`), `s[n]=Open|Closed|Open - Blocked`,
  `r[n]=<region>`, `state[n]=<XX>`, and `date_start`/`date_end` in **MM/DD/YYYY**
  — ISO dates are ignored rather than rejected, so the pack converts.
- **Sort** accepts `desc` (newest), `asc` (oldest) and `relevance`; `rows` and a
  zero-based `page` both work, confirmed to `rows=50`.
- **Case numbers are region-type-serial** (`10-CB-393760`): 2-digit region, case
  type (CA/CB against an employer/union, RC/RD/RM for representation), serial.
  The pack uppercases and zero-pads a single-digit region.
- Election tallies exist only on R cases that reached a count, and render as a
  second label/value block on the case page, so a generic label scrape mixes
  them into the case header unless they are separated by label name.
- The docket activity table on a case page shows only the most recent entries
  and, per NLRB's own footnote, does not reflect all actions in the case.

## Quick Start

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

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

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/nlrb/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:

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

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

## Standalone (no gateway account)

This package also runs as a local stdio MCP server — no Pipeworx account, no
gateway round-trip:

```json
{
  "mcpServers": {
    "nlrb": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-nlrb"]
    }
  }
}
```

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-nlrb
```

It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
for **only** this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.

## 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 Nlrb data" })
```

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

## More

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
mcpmcp-servermodel-context-protocolnlrbpipeworx

Lo que la gente pregunta sobre mcp-nlrb

¿Qué es pipeworx-io/mcp-nlrb?

+

pipeworx-io/mcp-nlrb es mcp servers para el ecosistema de Claude AI. NLRB MCP — US National Labor Relations Board case search: unfair labor Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-14.

¿Cómo se instala mcp-nlrb?

+

Puedes instalar mcp-nlrb clonando el repositorio (https://github.com/pipeworx-io/mcp-nlrb) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar pipeworx-io/mcp-nlrb?

+

Nuestro agente de seguridad ha analizado pipeworx-io/mcp-nlrb y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene pipeworx-io/mcp-nlrb?

+

pipeworx-io/mcp-nlrb es mantenido por pipeworx-io. La última actividad registrada en GitHub es del 2026-09-14, con 0 issues abiertos.

¿Hay alternativas a mcp-nlrb?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp-nlrb en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

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

Más MCP Servers

Alternativas a mcp-nlrb