ncua_compare_credit_unions
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_compare_credit_unions for the schema, then POST the same URL with its arguments for the data.
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 — 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.