ny_authority_debt_search
Pack: ny-authority-debt · Endpoint: https://gateway.pipeworx.io/ny-authority-debt/mcp
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 issuing authority, the project financed, bond closing date, par amount split into new money and refunding, true interest cost, term, tax-exempt or taxable status, competitive or negotiated sale, and a link to the authority’s own official statement. Answers “what bonds did the Dormitory Authority issue”, “New York tax-exempt issues over $100 million”, “who financed this project”. This is primary-market issuance as reported to the Authorities Budget Office; reported secondary-market trade prices are not included, and most municipal bonds trade too infrequently to have a current price at all.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
authority | string | no | Issuing authority name, matched loosely — “Dormitory” finds “Dormitory Authority of the State of New York”. |
authority_class | string | no | Restrict to one class: state | local | ida | ldc. Omit to search all four. |
project | string | no | Free-text match on the financed project name. |
type_of_debt | string | no | Free-text match on the debt type, e.g. “General Obligation”, “Revenue”. |
taxable_status | string | no | e.g. “Tax Exempt” or “Taxable”. |
since | string | no | Earliest bond closing date, YYYY-MM-DD. |
until | string | no | Latest bond closing date, YYYY-MM-DD. |
min_amount | number | no | Minimum total par amount in dollars. |
limit | number | no | Max issues to return (default 50, max 500). |
Example call
Arguments
{
"authority": "Dormitory",
"min_amount": 100000000,
"limit": 3
}
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_search","arguments":{"authority":"Dormitory","min_amount":100000000,"limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ny_authority_debt_search', {
"authority": "Dormitory",
"min_amount": 100000000,
"limit": 3
});
More examples
{
"authority_class": "ida",
"since": "2023-01-01"
}
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.