ncua_credit_union_profile
Pack: ncua · Endpoint: https://gateway.pipeworx.io/ncua/mcp
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 mirrored |
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, or use one-click install buttons:
{
"mcpServers": {
"ncua": {
"url": "https://gateway.pipeworx.io/ncua/mcp"
}
}
}
See Getting Started for client-specific install steps.