ncua_account_lookup
Pack: ncua · Endpoint: https://gateway.pipeworx.io/ncua/mcp
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.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
code | string | no | An account code, e.g. “ACCT_010” |
query | string | no | Words to search for, e.g. “total assets”, “net worth” |
limit | number | no | Max results (default 15) |
Example call
Arguments
{
"query": "delinquent loans"
}
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_account_lookup","arguments":{"query":"delinquent loans"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ncua_account_lookup', {
"query": "delinquent loans"
});
More examples
{
"code": "ACCT_010"
}
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.