MCP server exposing 8 tools for ncua.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/ncua/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
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 "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.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, peer group, minority-depository status) and branch/ATM counts. Answers "how big is Navy Federal", "how many members does PenFed have", "total assets of BECU". Look the credit union up by charter number or by name. Example: ncua_credit_union_profile({ name: "navy federal" }); ncua_credit_union_profile({ cu_number: 5536 }). Keyless.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", "PenFed membership over the last 3 years", "delinquency trend at my credit union". Pass `metric` for one series (total_assets, members, total_loans, total_shares, net_income, delinquent_loans) or omit it for every figure reported in the latest quarter. Example: ncua_credit_union_financials({ name: "navy federal", metric: "total_assets" }). Keyless.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 Ohio", "which credit unions have the most members". Ranks on the latest available quarter unless one is given. Example: ncua_rank_credit_unions({ metric: "total_assets", state: "OH", limit: 10 }); ncua_rank_credit_unions({ metric: "members" }). Keyless.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 SchoolsFirst". Pass names or charter numbers. Example: ncua_compare_credit_unions({ names: ["navy federal", "pentagon"] }). Keyless.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 and NCUA's full reporting instruction for each. Answers "what is ACCT_010", "which account code is total assets", "what does NCUA count as a delinquent loan". Searches names and the instruction text. Example: ncua_account_lookup({ code: "ACCT_010" }); ncua_account_lookup({ query: "delinquent loans" }). Keyless.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 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.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 unions are there in the US", "total credit union assets", "how many credit unions in Texas", "are credit unions shrinking". Pass a quarter to see a past period, or omit for the latest. Example: ncua_industry_totals({}); ncua_industry_totals({ state: "TX" }). Keyless.Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/ncua/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io