ncua_compare_credit_unions
Pack: ncua · Endpoint: https://gateway.pipeworx.io/ncua/mcp
Compare two or more US credit unions side by side on their NCUA call report figures — assets, members, loans, shares, net income, delinquency. Answers “Navy Federal vs PenFed”, “compare BECU and SchoolsFirst”. Pass names or charter numbers. Example: ncua_compare_credit_unions({ names: [“navy federal”, “pentagon”] }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
names | array | no | Credit union names, 2-5 of them |
items | string | no | |
cu_numbers | array | no | NCUA charter numbers instead of names |
items | number | no |
Example call
Arguments
{
"names": [
"navy federal",
"pentagon"
]
}
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_compare_credit_unions","arguments":{"names":["navy federal","pentagon"]}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ncua_compare_credit_unions', {
"names": [
"navy federal",
"pentagon"
]
});
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.