forecast_detail
Pack: acquisition-forecasts · Endpoint: https://gateway.pipeworx.io/acquisition-forecasts/mcp
Full detail for one procurement forecast entry by its APFS number (e.g. “F2026074190”) or numeric id, as returned by forecast_search. Adds the complete requirement narrative, period of performance, place of performance, contract vehicle and type, competition status, and the requirements/contracting/small-business contacts with e-mail and phone. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
forecast_id | string | yes | APFS number (“F2026074190”) or the numeric id from a search result. |
agency | string | no | Agency key, default “DHS”. |
Example call
Arguments
{
"forecast_id": "F2026073437"
}
curl
curl -X POST https://gateway.pipeworx.io/acquisition-forecasts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"forecast_detail","arguments":{"forecast_id":"F2026073437"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('forecast_detail', {
"forecast_id": "F2026073437"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"acquisition-forecasts": {
"url": "https://gateway.pipeworx.io/acquisition-forecasts/mcp"
}
}
}
See Getting Started for client-specific install steps.