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

NameTypeRequiredDescription
cu_numbernumbernoNCUA charter number
namestringnoCredit union name (fuzzy)
citystringnoCity name
statestringnoTwo-letter state code
postal_codestringnoZIP code
include_atmsbooleannoAlso return standalone ATM locations (default false)
limitnumbernoMax 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.

Regenerated from source · build August 13, 2026