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