Gao Protests
live ReferenceGAO Bid-Protest Decisions MCP — reads the gao_bid_protests table (ingested
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_search Search accumulated GAO bid-protest decisions by protester (company) name, e.g. "has <company> been cited in a bid protest" or "which GAO protests did Boeing file". Case-insensitive partial match. Only
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.
curl -X POST https://gateway.pipeworx.io/gao-protests/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' 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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("gao_protests_recent", {}); // Or ask in plain English:
const answer = await px.ask("gao bid-protest decisions mcp — reads the gao_bid_protests table (ingested");