sba_lender_league_table
Pack: sba-loans · Endpoint: https://gateway.pipeworx.io/sba-loans/mcp
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 the debenture. Answers “which bank does the most SBA lending in NAICS Y” or “top SBA 504 lenders in California”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
program | string | no | Optional: “7A” or “504”. Omit to combine both (note: 7(a) banks and 504 CDCs are different kinds of entity, so combining programs mixes those populations). |
state | string | no | Optional 2-letter borrower state code. |
naics_code | string | no | Optional 6-digit NAICS code. |
limit | number | no | Max lenders to return (1-100, default 25). |
Example call
Arguments
{
"program": "7A",
"state": "CA",
"limit": 10
}
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_lender_league_table","arguments":{"program":"7A","state":"CA","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sba_lender_league_table', {
"program": "7A",
"state": "CA",
"limit": 10
});
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.