ca_debt_filter_options
Pack: ca-debtwatch · Endpoint: https://gateway.pipeworx.io/ca-debtwatch/mcp
Valid values for the enumerated filters on California municipal bond issuance search —
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
field | string | no | One of: debt_type, primary_purpose, issuer_group, issuer_type, county, tax_status, sold_status, labeled_debt_type, sale_type, source_of_repayment, enhancement_type, interest_type. Omit for all. |
Example call
Arguments
{
"field": "debt_type"
}
curl
curl -X POST https://gateway.pipeworx.io/ca-debtwatch/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ca_debt_filter_options","arguments":{"field":"debt_type"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ca_debt_filter_options', {
"field": "debt_type"
});
More examples
{}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ca-debtwatch": {
"url": "https://gateway.pipeworx.io/ca-debtwatch/mcp"
}
}
}
See Getting Started for client-specific install steps.