fac_search_audits

Pack: fac · Endpoint: https://gateway.pipeworx.io/fac/mcp

Search US single audits (Uniform Guidance / former OMB A-133) filed with the Federal Audit Clearinghouse by auditee name, UEI, EIN, state, audit year, or minimum federal dollars expended. Returns the report_id, the organization name and location, total federal awards expended for the year, the cognizant/oversight agency, and the date FAC accepted the submission. Answers “does this grant recipient file a single audit and how much federal money does it run”.

Parameters

NameTypeRequiredDescription
auditee_namestringnoOrganization name, matched as a forgiving case-insensitive substring (e.g. “stanford”, “county of los angeles”). Aliases: query, q, name.
ueistringnoSAM.gov Unique Entity Identifier (12 chars), exact match. Alias: auditee_uei.
einstringnoEmployer Identification Number, digits only, exact match. Alias: auditee_ein.
statestringno2-letter auditee state code (e.g. “CA”). Alias: auditee_state.
audit_yearnumbernoFiscal audit year, e.g. 2023.
audit_year_minnumbernoEarliest audit year to include.
min_total_expendednumbernoOnly audits whose total federal awards expended is at least this many dollars (e.g. 100000000 for billion-dollar-scale recipients).
order_bystringnoSort column, descending by default. Defaults to total_amount_expended.
ascendingbooleannoSort ascending instead of descending.
limitnumbernoRows to return, 1-200 (default 20).
offsetnumbernoRows to skip, for paging.

Example call

Arguments

{
  "auditee_name": "stanford",
  "audit_year": 2023,
  "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_search_audits","arguments":{"auditee_name":"stanford","audit_year":2023,"limit":3}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fac_search_audits', {
  "auditee_name": "stanford",
  "audit_year": 2023,
  "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.

Regenerated from source · build July 30, 2026