fac_get_audit
Pack: fac · Endpoint: https://gateway.pipeworx.io/fac/mcp
Fetch one single audit by its FAC report_id, enriched with the full federal program detail: every Assistance Listing (CFDA) number the entity expended money under, the program name, dollars expended per program, whether it was audited as a major program, and the opinion type. Also returns auditee contact and auditor details, plus audit findings when the FAC findings table carries them. Answers “what did this specific audit cover and what did it conclude”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
report_id | string | yes | FAC report id as returned by fac_search_audits, e.g. “2023-06-CENSUS-0000250449”. Aliases: id, audit_id. |
award_limit | number | no | Max federal award rows to include, 1-500 (default 200). |
include_findings | boolean | no | Attach audit findings for this report (default true). |
Example call
Arguments
{
"report_id": "2023-08-GSAFAC-0000039233",
"award_limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/fac/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fac_get_audit","arguments":{"report_id":"2023-08-GSAFAC-0000039233","award_limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fac_get_audit', {
"report_id": "2023-08-GSAFAC-0000039233",
"award_limit": 3
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fac": {
"url": "https://gateway.pipeworx.io/fac/mcp"
}
}
}
See Getting Started for client-specific install steps.