ncua_credit_union_profile
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_credit_union_profile for the schema, then POST the same URL with its arguments for the data.
Get a full profile for one US credit union from its NCUA call report: total assets, member count, loans, shares/deposits, net income and delinquent loans, plus charter details (state, year opened, peer group, minority-depository status) and branch/ATM counts. Answers “how big is Navy Federal”, “how many members does PenFed have”, “total assets of BECU”. Look the credit union up by charter number or by name. Example: ncua_credit_union_profile({ name: “navy federal” }); ncua_credit_union_profile({ cu_number: 5536 }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cu_number | number | no | NCUA charter number |
name | string | no | Credit union name (fuzzy) if the charter number is unknown |
quarter | string | no | Quarter end as YYYY-MM-DD; defaults to the latest quarter available |
Example call
Arguments
{
"name": "navy federal"
}
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_credit_union_profile","arguments":{"name":"navy federal"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ncua_credit_union_profile', {
"name": "navy federal"
});
More examples
{
"cu_number": 5536
}
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.