Ny Authority Debt
live Referenceny-authority-debt — New York public authority debt issuance.
Tools
ny_authority_debt_search Search New York municipal bond and debt issues sold by public authorities — state authorities, local authorities, Industrial Development Agencies and Local Development Corporations. Returns the issuin
No parameters required.
Try it
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.
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"}' 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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ny_authority_debt_search", {}); // Or ask in plain English:
const answer = await px.ask("ny-authority-debt — new york public authority debt issuance");