fac_audit_findings
Pack: fac · Endpoint: https://gateway.pipeworx.io/fac/mcp
Audit findings recorded against single audits — the compliance exceptions, material weaknesses, significant deficiencies, questioned costs and repeat findings that auditors reported. Query by report_id, or by recipient name/UEI to sweep every audit that recipient filed. Answers “has this grant recipient had audit findings, and were they material or repeated”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
report_id | string | no | FAC report id to pull findings for. Aliases: id, audit_id. |
auditee_name | string | no | Recipient name substring; the tool resolves matching audits first, then their findings. Aliases: query, q, name. |
uei | string | no | Recipient UEI; resolves that recipient’s audits, then their findings. Alias: auditee_uei. |
audit_year | number | no | Restrict the resolved audits to one audit year (used with auditee_name or uei). |
include_text | boolean | no | Also attach the narrative finding text when FAC exposes it (default false — the text rows are long). |
limit | number | no | Max finding rows to return, 1-200 (default 50). |
Example call
Arguments
{
"uei": "MPUMNJU3G315",
"limit": 5
}
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_audit_findings","arguments":{"uei":"MPUMNJU3G315","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fac_audit_findings', {
"uei": "MPUMNJU3G315",
"limit": 5
});
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.