ncua_credit_union_financials
Pack: ncua · Endpoint: https://gateway.pipeworx.io/ncua/mcp
Get one US credit union’s reported call report figures over time, or every figure for a single quarter — labeled, never as raw account codes. Use for trends: “how have Navy Federal’s assets grown”, “PenFed membership over the last 3 years”, “delinquency trend at my credit union”. Pass metric for one series (total_assets, members, total_loans, total_shares, net_income, delinquent_loans) or omit it for every figure reported in the latest quarter. Example: ncua_credit_union_financials({ name: “navy federal”, metric: “total_assets” }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cu_number | number | no | NCUA charter number |
name | string | no | Credit union name (fuzzy) |
metric | string | no | One of: total_assets, members, total_loans, total_shares, net_income, delinquent_loans. Or a raw NCUA account code like “ACCT_010”. Omit for all figures in the latest quarter. |
Example call
Arguments
{
"name": "navy federal",
"metric": "total_assets"
}
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_financials","arguments":{"name":"navy federal","metric":"total_assets"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ncua_credit_union_financials', {
"name": "navy federal",
"metric": "total_assets"
});
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.