ny_authority_debt_totals

Pack: ny-authority-debt · Endpoint: https://gateway.pipeworx.io/ny-authority-debt/mcp

Aggregate New York public authority borrowing by year and by authority class — total par issued, how much was new money versus refunding, and the most active issuers. Answers “how much did New York authorities borrow in 2024”, “which New York issuers borrow the most”, “how much of this is refinancing”. Primary-market issuance only.

Parameters

NameTypeRequiredDescription
authority_classstringnoRestrict to one class: state | local | ida | ldc. Omit for all four.
sincestringnoEarliest bond closing date, YYYY-MM-DD.
topnumbernoHow many top issuers to return (default 15).

Example call

Arguments

{
  "since": "2023-01-01",
  "top": 5
}

curl

curl -X POST https://gateway.pipeworx.io/ny-authority-debt/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ny_authority_debt_totals","arguments":{"since":"2023-01-01","top":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ny_authority_debt_totals', {
  "since": "2023-01-01",
  "top": 5
});

Connect

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

{
  "mcpServers": {
    "ny-authority-debt": {
      "url": "https://gateway.pipeworx.io/ny-authority-debt/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026