pcaob_auditor_changes
Pack: pcaob · Endpoint: https://gateway.pipeworx.io/pcaob/mcp
Issuers whose most recent Form AP filing names a DIFFERENT audit firm than their prior filing, where the new filing landed in the last N days — the “who switched auditors recently” aggregation, which no upstream PCAOB page offers directly. Scans issuers with a Form AP filing in the window (capped at 1500 issuers per call) and compares each against its own filing history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
days | number | no | Lookback window in days for the most recent filing (default 90). |
limit | number | no | Max changes to return, 1-200 (default 50). |
Example call
Arguments
{
"days": 90,
"limit": 25
}
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_auditor_changes","arguments":{"days":90,"limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pcaob_auditor_changes', {
"days": 90,
"limit": 25
});
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.