ncua_industry_totals
Pack: ncua · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ncua_industry_totals for the schema, then POST the same URL with its arguments for the data.
Aggregate totals across the whole US credit union industry, or one state, from NCUA call report data: number of credit unions, combined assets, total members, average size. Answers “how many credit unions are there in the US”, “total credit union assets”, “how many credit unions in Texas”, “are credit unions shrinking”. Pass a quarter to see a past period, or omit for the latest. Example: ncua_industry_totals({}); ncua_industry_totals({ state: “TX” }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | Restrict to one state, e.g. “TX” |
quarter | string | no | Quarter end as YYYY-MM-DD; defaults to latest |
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/ncua/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ncua_industry_totals","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ncua_industry_totals', {});
More examples
{
"state": "TX"
}
Connect
Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:
{
"mcpServers": {
"pipeworx": {
"url": "https://pipeworx.io/mcp"
}
}
}
Connect to just the ncua pack
{
"mcpServers": {
"ncua": {
"url": "https://gateway.pipeworx.io/ncua/mcp"
}
}
}
See Getting Started for client-specific install steps.