Federal Audit Clearinghouse

liveGovernment

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.

5tools
0msauth
free tier50 calls/day

Tools

fac_search_audits

US federal single audits (Uniform Guidance) matching a filter, from the Federal Audit Clearinghouse.

No parameters required.

Try it
fac_get_audit

One US federal single audit's full record, by id, from the Federal Audit Clearinghouse.

No parameters required.

Try it
fac_audit_findings

The findings (deficiencies) reported in one federal single audit, from the Federal Audit Clearinghouse.

No parameters required.

Try it
fac_federal_awards_by_program

Federal awards audited under one CFDA/assistance-listing program, from the Federal Audit Clearinghouse.

No parameters required.

Try it
fac_recipient_audit_history

A 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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/fac/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("fac_search_audits", {});
ask_pipeworx
// 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");