pcaob_inspection_reports
Pack: pcaob · Endpoint: https://gateway.pipeworx.io/pcaob/mcp
PCAOB inspection history for an audit firm: report year, Part I.A deficiency rate, audits reviewed, and a link to the PDF report. Give a firm name (partial match ok). Use for “has PCAOB found deficiencies at Deloitte”, “KPMG PCAOB inspection history”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
firm | string | yes | Firm name, partial match ok, e.g. “Deloitte”. |
limit | number | no | Max reports to return, 1-100 (default 25). |
Example call
Arguments
{
"firm": "KPMG",
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/pcaob/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pcaob_inspection_reports","arguments":{"firm":"KPMG","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pcaob_inspection_reports', {
"firm": "KPMG",
"limit": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pcaob": {
"url": "https://gateway.pipeworx.io/pcaob/mcp"
}
}
}
See Getting Started for client-specific install steps.