Ncua

live Art

NCUA MCP — US credit union data from the quarterly 5300 Call Report.

8 tools
0ms auth
free tier 50 calls/day

Tools

ncua_search_credit_unions

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 "cr

No parameters required.

Try it
ncua_credit_union_profile

Get a full profile for one US credit union from its NCUA call report: total assets, member count, loans, shares/deposits, net income and delinquent loans, plus charter details (state, year opened, pee

No parameters required.

Try it
ncua_credit_union_financials

Get one US credit union's reported call report figures over time, or every figure for a single quarter — labeled, never as raw account codes. Use for trends: "how have Navy Federal's assets grown", "P

No parameters required.

Try it
ncua_rank_credit_unions

Rank US credit unions by a call report figure — largest by assets, most members, biggest loan book — optionally within one state. Answers "largest credit unions in the US", "biggest credit union in Oh

No parameters required.

Try it
ncua_compare_credit_unions

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 Schoo

No parameters required.

Try it
ncua_account_lookup

Look up what an NCUA call report account code means, or find the code for a figure. The 5300 Call Report stores everything against codes like ACCT_010 or ACCT_083, and this returns the official name a

No parameters required.

Try it
ncua_branches

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 Fed

No parameters required.

Try it
ncua_industry_totals

Aggregate totals across the whole US credit union industry, or one state, from NCUA call report data: number of credit unions, combined assets, total members, average size. Answers "how many credit un

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/ncua/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ncua/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ncua_search_credit_unions","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ncua_search_credit_unions", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("ncua mcp — us credit union data from the quarterly 5300 call report");