gao_protests_recent

Pack: gao-protests · Endpoint: https://gateway.pipeworx.io/gao-protests/mcp

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|dismissed|sustained). Returns each decision’s B-number(s), protester, decided_on date, and the normalized + raw outcome sentence. Answers “recent GAO bid protest decisions” and “how often does GAO sustain protests”. Coverage is a rolling accumulation from GAO’s recent-decisions feed (~5 newest decisions land per daily crawl), not GAO’s full historical archive — use gao_protests_coverage to see how far back this goes.

Parameters

NameTypeRequiredDescription
daysnumber,stringnoLookback window in days from today (default 30, max 3650).
outcomestringnoFilter to one outcome: ${OUTCOMES.join(’ | ’)}.
limitnumber,stringnoMax rows (1-200, default 50).

Example call

Arguments

{
  "days": 30
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "days": 30,
  "outcome": "denied"
}

Connect

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

{
  "mcpServers": {
    "gao-protests": {
      "url": "https://gateway.pipeworx.io/gao-protests/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026