Sba Loans
live ReferenceSBA loans MCP — U.S. Small Business Administration 7(a) / 504 FOIA loan
Tools
sba_loan_lookup 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 =
No parameters required.
Try it
sba_largest_loans Largest SBA 7(a)/504 loans, ranked by gross approval amount, filterable by program, NAICS code, borrower state, and/or lender name. Answers "what are the biggest SBA loans in NAICS X" or "largest SBA
No parameters required.
Try it
sba_lender_league_table Lender league table — ranks lenders by SBA loan count and total dollar volume. For 7(a) loans "lender" is the originating bank; for 504 loans it is the CDC (Certified Development Company) that books t
No parameters required.
Try it
sba_charge_off_aggregate Charge-off rate and dollar amount, aggregated by NAICS code, state, lender, or program. Answers "which industries have the highest SBA loan charge-off rate" or "charge-off amount by state". charge_off
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.
curl -X POST https://gateway.pipeworx.io/sba-loans/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/sba-loans/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"sba_loan_lookup","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("sba_loan_lookup", {}); // Or ask in plain English:
const answer = await px.ask("sba loans mcp — u");