syndicated_loan_covenant_breach_alert
ActiveTool of gapup-mcp
Monitors syndicated loan covenants for potential breaches by analyzing Tradeweb market data. Designed for CFOs to proactively identify financial compliance risks in loan agreements. Accepts loan identifiers, covenant thresholds, and reporting period as inputs. Returns structured breach alerts with market context and severity indicators.
Parameters schema
{
"type": "object",
"required": [
"loanId",
"covenantThresholds",
"reportingPeriod"
],
"properties": {
"async": {
"type": "boolean",
"description": "If true, returns a job_id immediately (<200ms) instead of waiting for the result. Poll the result with job_result(job_id). Use for slow tools to avoid client timeouts."
},
"loanId": {
"type": "string",
"description": "Unique identifier for the syndicated loan"
},
"currency": {
"type": "string",
"description": "ISO currency code for financial values"
},
"reportingPeriod": {
"enum": [
"daily",
"weekly",
"monthly"
],
"type": "string",
"description": "Time period for covenant compliance check"
},
"covenantThresholds": {
"type": "object",
"required": [
"debtServiceCoverageRatio",
"interestCoverageRatio",
"leverageRatio"
],
"properties": {
"leverageRatio": {
"type": "number"
},
"interestCoverageRatio": {
"type": "number"
},
"debtServiceCoverageRatio": {
"type": "number"
}
}
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
gapup-mcp
https://github.com/getgapup/gapup-mcp-public
2/7 registries