gao_protest
Pack: gao-protests · Endpoint: https://gateway.pipeworx.io/gao-protests/mcp
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 deny the protest.”), and a link to the decision PDF. Only returns a decision already present in gao_protests_recent’s rolling window — a B-number GAO decided before this pack started tracking, or one never surfaced on the recent-decisions feed, will not be found here.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
b_number | string | yes | A GAO B-number, e.g. “B-424695” or “B-424484.2”. Case-insensitive. |
Example call
Arguments
{
"b_number": "B-424695"
}
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_protest","arguments":{"b_number":"B-424695"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gao_protest', {
"b_number": "B-424695"
});
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.