gao_protests_search
Pack: gao-protests · Endpoint: https://gateway.pipeworx.io/gao-protests/mcp
Search accumulated GAO bid-protest decisions by protester (company) name, e.g. “has
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
protester | string | yes | Protester/company name or partial name, e.g. “Guernsey” or “FCN”. |
limit | number,string | no | Max rows (1-100, default 25). |
Example call
Arguments
{
"protester": "Guernsey"
}
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_search","arguments":{"protester":"Guernsey"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gao_protests_search', {
"protester": "Guernsey"
});
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.