ncua_branches
Pack: ncua · Endpoint: https://gateway.pipeworx.io/ncua/mcp
Find US credit union branch and ATM locations from NCUA records — by credit union, or by city/state/ZIP. Returns address, phone, hours, and whether the site has an ATM or drive-thru. Answers “Navy Federal branches in San Diego”, “credit union branches in ZIP 78701”. NOTE: NCUA publishes addresses only, with no coordinates, so this matches on city/state/ZIP text rather than true distance. Example: ncua_branches({ name: “navy federal”, state: “CA” }); ncua_branches({ postal_code: “78701” }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cu_number | number | no | NCUA charter number |
name | string | no | Credit union name (fuzzy) |
city | string | no | City name |
state | string | no | Two-letter state code |
postal_code | string | no | ZIP code |
include_atms | boolean | no | Also return standalone ATM locations (default false) |
limit | number | no | Max results (default 25, max 100) |
Example call
Arguments
{
"name": "navy federal",
"state": "CA"
}
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_branches","arguments":{"name":"navy federal","state":"CA"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ncua_branches', {
"name": "navy federal",
"state": "CA"
});
More examples
{
"state": "TX",
"city": "Austin"
}
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.