ncua_search_credit_unions
Pack: ncua · Endpoint: https://gateway.pipeworx.io/ncua/mcp
Find US credit unions by name, city or state, using NCUA call report data (the federal regulator of credit unions). Returns charter number, name, city, state, year opened and total assets. Answers “credit unions in Austin Texas”, “is there a credit union called Alliant”, “list Ohio credit unions”. Name matching is fuzzy, so partial and misspelled names work (“navy fed” finds NAVY FEDERAL CREDIT UNION). Example: ncua_search_credit_unions({ name: “navy federal” }); ncua_search_credit_unions({ state: “OH”, limit: 25 }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Full or partial credit union name, e.g. “navy federal” |
state | string | no | Two-letter state code, e.g. “TX” |
city | string | no | City name, e.g. “Austin” |
limit | number | no | Max results (default 20, max 100) |
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_search_credit_unions","arguments":{"name":"navy federal"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ncua_search_credit_unions', {
"name": "navy federal"
});
More examples
{
"state": "OH",
"limit": 25
}
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.