ny_authority_debt_profile
Pack: ny-authority-debt · Endpoint: https://gateway.pipeworx.io/ny-authority-debt/mcp
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 Dormitory Authority borrowed”, “what has Battery Park City Authority issued and at what interest cost”, “is this issuer mostly refinancing”. Covers primary-market issuance only — no reported trade prices.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
authority | string | yes | Authority name, matched loosely, e.g. “Battery Park City”. |
limit | number | no | Max issues to return (default 200, max 500). |
Example call
Arguments
{
"authority": "Battery Park City"
}
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_profile","arguments":{"authority":"Battery Park City"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ny_authority_debt_profile', {
"authority": "Battery Park City"
});
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.