Gao Protests

live Reference

GAO Bid-Protest Decisions MCP — reads the gao_bid_protests table (ingested

4 tools
0ms auth
free tier 50 calls/day

Tools

gao_protests_recent

Recently decided GAO bid-protest decisions — government-contract award disputes ruled on by the Government Accountability Office. Filter by a lookback window (days) and optionally outcome (denied|dism

No parameters required.

Try it
gao_protest

Fetch a single GAO bid-protest decision by its B-number (e.g. "B-424695" or "B-424484.2" for a reconsideration). Returns protester, decided_on, outcome (normalized + the raw prose sentence, e.g. "We d

No parameters required.

Try it
gao_protests_coverage

How much GAO bid-protest data this pack currently holds: total decisions, the earliest and most recent decided_on dates, and when the daily crawl last ran. Use this before relying on gao_protests_rece

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/gao-protests/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/gao-protests/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"gao_protests_recent","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("gao_protests_recent", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("gao bid-protest decisions mcp — reads the gao_bid_protests table (ingested");