sba_loan_lookup
Pack: sba-loans · Endpoint: https://gateway.pipeworx.io/sba-loans/mcp
Look up a small business’s SBA 7(a) or 504 loan(s) by borrower name. Returns individual loan records: amounts, lender, approval date, status (P I F / PIF = paid in full, CHGOFF = charged off, CANCLD = cancelled, EXEMPT), and — for charged-off loans — the charge-off amount. Street addresses are never stored or returned (city/state/ZIP only). Scope to a state to disambiguate common business names.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
borrower_name | string | yes | Business or sole-proprietor name to search (substring match), e.g. “Ameripro Construction”. |
state | string | no | Two-letter state code to scope the search, e.g. “PA”. |
program | string | no | Optional: “7A” or “504”. Omit to search both. |
limit | number | no | Max loans to return (1-100, default 20). |
Example call
Arguments
{
"borrower_name": "Ameripro Construction",
"state": "PA"
}
curl
curl -X POST https://gateway.pipeworx.io/sba-loans/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sba_loan_lookup","arguments":{"borrower_name":"Ameripro Construction","state":"PA"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sba_loan_lookup', {
"borrower_name": "Ameripro Construction",
"state": "PA"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sba-loans": {
"url": "https://gateway.pipeworx.io/sba-loans/mcp"
}
}
}
See Getting Started for client-specific install steps.