fac_recipient_audit_history
Pack: fac · Endpoint: https://gateway.pipeworx.io/fac/mcp
Year-by-year single-audit history for one grant recipient, identified by UEI or by name. Returns each audit year with total federal awards expended, the report_id, the oversight agency and the FAC acceptance date, plus a growth read on the spend trend. Answers “how has this organization’s federal funding moved over time and which years were audited”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
uei | string | no | SAM.gov Unique Entity Identifier, the precise way to pin one recipient. Alias: auditee_uei. |
auditee_name | string | no | Recipient name substring when the UEI is unknown, e.g. “johns hopkins”. Aliases: query, q, name. |
ein | string | no | Employer Identification Number, an alternative exact identifier. Alias: auditee_ein. |
state | string | no | 2-letter state code, useful to disambiguate a common name. |
years | number | no | Max audit years to return, 1-40 (default 15). |
Example call
Arguments
{
"uei": "HJD6G4D6TJY5"
}
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_recipient_audit_history","arguments":{"uei":"HJD6G4D6TJY5"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fac_recipient_audit_history', {
"uei": "HJD6G4D6TJY5"
});
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.