Federal Audit Clearinghouse
liveGovernmentUS single-audit filings (Uniform Guidance, formerly OMB A-133): who spends federal grant money, under which Assistance Listing program, and what the auditors found.
Tools
fac_search_auditsUS federal single audits (Uniform Guidance) matching a filter, from the Federal Audit Clearinghouse.
No parameters required.
Try it
fac_get_auditOne US federal single audit's full record, by id, from the Federal Audit Clearinghouse.
No parameters required.
Try it
fac_audit_findingsThe findings (deficiencies) reported in one federal single audit, from the Federal Audit Clearinghouse.
No parameters required.
Try it
fac_federal_awards_by_programFederal awards audited under one CFDA/assistance-listing program, from the Federal Audit Clearinghouse.
No parameters required.
Try it
fac_recipient_audit_historyA recipient organization's history of federal single audits, from the Federal Audit Clearinghouse.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/fac/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/fac/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"fac_search_audits","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fac_search_audits", {});// Or ask in plain English:
const answer = await px.ask("us single-audit filings (uniform guidance, formerly omb a-133): who spends federal grant money, under which assistance listing program, and what the auditors found");