Server data from the Official MCP Registry
PCAOB — Form AP auditor<->issuer engagements + firm inspection reports.
About
PCAOB — Form AP auditor<->issuer engagements + firm inspection reports.
Remote endpoints: streamable-http: https://gateway.pipeworx.io/pcaob/mcp
Security Report
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. Trust signals: trusted author (1466/1479 approved). 1 finding(s) downgraded by scanner intelligence.
41 tools verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
How to Connect
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-pipeworx-io-pcaob": {
"url": "https://gateway.pipeworx.io/pcaob/mcp"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
@pipeworx/pcaob
PCAOB Form AP auditor↔issuer engagements and firm inspection reports — hosted, keyless to the caller. Fleet #624: "who audits Company X and which engagement partner signed", "every issuer audited by Firm Y", and "has PCAOB found deficiencies at Firm Y" had no surface before this pack.
Part of Pipeworx — an MCP gateway connecting AI agents to 1669+ live data sources.
Tools
pcaob_auditor_of(company)— which firm audits a company and who the engagement partner is. Resolves a ticker/company name to SEC CIK first (resolveSecEntity, the same universeedgarandseckey on); falls back to an issuer-name search across Form AP filings for issuers without a clean SEC ticker (funds, broker-dealers).pcaob_firm_engagements(firm, fiscal_year?, limit?)— every issuer a firm reported auditing, optionally scoped to one fiscal year.firmmatches a numeric PCAOB Firm ID exactly, otherwise an ILIKE name search.pcaob_partner_engagements(partner, limit?)— every issuer one named engagement partner signed for.pcaob_auditor_changes(days?, limit?)— issuers whose most recent Form AP filing names a different firm than their prior filing, where the change landed in the last N days. Scans up to 1,500 issuers with a filing in the window (response says so if capped).pcaob_inspection_reports(firm, limit?)— PCAOB inspection history for a firm: report year, Part I.A deficiency rate, audits reviewed, PDF link.
Data
Two tables, mirrored by workers/data-pipeline (workers/data-pipeline/src/datasets/pcaob.ts),
migration supabase/migrations/107_pcaob_form_ap_inspections.sql:
pcaob_form_ap— PCAOB's own bulk download of the entire AuditorSearch dataset (assets.pcaobus.org/firm-filings/FirmFilings.zip), ~156k rows as of 2026-08. Refreshed weekly; quoted CSV with embedded commas in issuer names, so ingest rides the slow parser and drains over several cron ticks via the resume-offset protocol (same pattern as USAspending).pcaob_inspection_reports— the Firm Inspection Reports downloadable dataset PCAOB publishes atpcaobus.org/oversight/inspections/firm-inspection-reports, ~4.3k rows (one per firm per inspection report). Uses the JSON variant of the dataset, not the CSV — PCAOB's CSV file is UTF-16LE encoded and this pipeline's parser is fixed at UTF-8; the JSON export of the identical data is plain UTF-8 and small enough to parse whole-body (format: 'json'in the data-pipeline runner, added for this pack — see the runner's comment for why).
Identity notes
- Issuer CIK can be blank for non-SEC registrants (some broker-dealers) — those rows are kept
under
issuer_nameonly, never dropped. - Firm names vary by country affiliate ("PwC LLP" vs "PricewaterhouseCoopers LLP"). Search matches on the numeric PCAOB Firm ID when the input is all-digits, ILIKE name otherwise, and every response echoes the firm_id(s)/firm_name(s) it actually matched.
pcaob_auditor_changescompares each issuer's own filing history, not a table-wide diff — PostgREST has no window functions, so this pulls a bounded recent history per issuer batch and picks the two most recent filings client-side. It is a real scan (not an aggregate query), hence the 1,500-issuer cap per call.
Caveat carried on every response
Form AP covers US issuer audits only, self-reported by the audit firm. Firm inspection findings are Part I.A summary counts from PCAOB's published dataset, not the full report text — the PDF link is provided for that.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pcaob": {
"url": "https://gateway.pipeworx.io/pcaob/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/pcaob/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1669+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/pcaob_auditor_of \
-H 'Content-Type: application/json' \
-d '{"company":"Tesla"}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/pcaob_auditor_of. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"pcaob": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-pcaob"]
}
}
}
Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-pcaob
It speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Pcaob data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Fetch
Freeby Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
Paperclip
Freeby Paperclipai · Developer Tools
Trending hip-hop artist momentum scores across four cultural dimensions.
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
