abs_trusts

Pack: abs-loan-level · Endpoint: https://gateway.pipeworx.io/abs-loan-level/mcp

List US auto loan / auto lease securitization trusts we track (from SEC EDGAR Reg AB II ABS-EE filings), optionally filtered by sponsor (captive-finance company / depositor, e.g. “Ally”, “Toyota”) or asset class. Use to find the exact trust name abs_trust_performance needs, or to see which sponsors/asset classes have coverage.

Parameters

NameTypeRequiredDescription
sponsorstringnoCase-insensitive substring match on the sponsor/depositor name, e.g. “Ally”, “CarMax”, “Exeter”, “BMW”.
asset_classstringnoFilter to one asset class.
limitnumbernoMax trusts to return. Default 50, max 500.

Example call

Arguments

{
  "asset_class": "auto_loan",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/abs-loan-level/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"abs_trusts","arguments":{"asset_class":"auto_loan","limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('abs_trusts', {
  "asset_class": "auto_loan",
  "limit": 10
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "abs-loan-level": {
      "url": "https://gateway.pipeworx.io/abs-loan-level/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 30, 2026