Ny Authority Debt

live Reference

ny-authority-debt — New York public authority debt issuance.

4 tools
0ms auth
free tier 50 calls/day

Tools

ny_authority_debt_profile

Everything one New York public authority has issued: every bond and debt issue with its terms, plus totals by fiscal year and a breakdown of new money versus refunding. Answers "how much has the Dormi

No parameters required.

Try it
ny_authority_debt_totals

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 au

No parameters required.

Try it
ny_authority_debt_coverage

What New York public authority debt data is available: the four authority classes covered, how many issues each holds, the date range, and an explicit statement of what is NOT here (no reported second

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/ny-authority-debt/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ny-authority-debt/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ny_authority_debt_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ny_authority_debt_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("ny-authority-debt — new york public authority debt issuance");