removedInput schema / additionalProperties
Removed value: -false
addedInput schema / properties / chain_id / title
Added value: +"Chain Id"
addedInput schema / properties / wallet_addresses / title
Added value: +"Wallet Addresses"
addedInput schema / title
Added value: +"mcp_get_liquidation_riskArguments"
addedOutput schema / $defs
Added value: +{
+ "AaveRisk": {
+ "properties": {
+ "health_factor": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Health Factor"
+ },
+ "liquidation_threshold_bps": {
+ "title": "Liquidation Threshold Bps",
+ "type": "integer"
+ },
+ "ltv_bps": {
+ "title": "Ltv Bps",
+ "type": "integer"
+ },
+ "risk_tier": {
+ "title": "Risk Tier",
+ "type": "string"
+ },
+ "total_collateral_usd": {
+ "title": "Total Collateral Usd",
+ "type": "number"
+ },
+ "total_debt_usd": {
+ "title": "Total Debt Usd",
+ "type": "number"
+ }
+ },
+ "required": [
+ "health_factor",
+ "risk_tier",
+ "total_collateral_usd",
+ "total_debt_usd",
+ "liquidation_threshold_bps",
+ "ltv_bps"
+ ],
+ "title": "AaveRisk",
+ "type": "object"
+ },
+ "CompoundRisk": {
+ "properties": {
+ "base_asset_symbol": {
+ "title": "Base Asset Symbol",
+ "type": "string"
+ },
+ "borrow_balance_raw": {
+ "title": "Borrow Balance Raw",
+ "type": "string"
+ },
+ "is_liquidatable": {
+ "title": "Is Liquidatable",
+ "type": "boolean"
+ },
+ "market_address": {
+ "title": "Market Address",
+ "type": "string"
+ },
+ "market_name": {
+ "title": "Market Name",
+ "type": "string"
+ },
+ "risk_tier": {
+ "title": "Risk Tier",
+ "type": "string"
+ }
+ },
+ "required": [
+ "market_name",
+ "market_address",
+ "base_asset_symbol",
+ "is_liquidatable",
+ "borrow_balance_raw",
+ "risk_tier"
+ ],
+ "title": "CompoundRisk",
+ "type": "object"
+ },
+ "ProtocolErrorInfo": {
+ "properties": {
+ "error": {
+ "title": "Error",
+ "type": "string"
+ },
+ "protocol": {
+ "title": "Protocol",
+ "type": "string"
+ }
+ },
+ "required": [
+ "protocol",
+ "error"
+ ],
+ "title": "ProtocolErrorInfo",
+ "type": "object"
+ },
+ "RiskSummary": {
+ "properties": {
+ "caution_count": {
+ "title": "Caution Count",
+ "type": "integer"
+ },
+ "critical_count": {
+ "title": "Critical Count",
+ "type": "integer"
+ },
+ "healthy_count": {
+ "title": "Healthy Count",
+ "type": "integer"
+ },
+ "liquidatable_count": {
+ "title": "Liquidatable Count",
+ "type": "integer"
+ },
+ "no_debt_count": {
+ "title": "No Debt Count",
+ "type": "integer"
+ },
+ "total_wallets": {
+ "title": "Total Wallets",
+ "type": "integer"
+ },
+ "warning_count": {
+ "title": "Warning Count",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total_wallets",
+ "liquidatable_count",
+ "critical_count",
+ "warning_count",
+ "caution_count",
+ "healthy_count",
+ "no_debt_count"
+ ],
+ "title": "RiskSummary",
+ "type": "object"
+ },
+ "WalletRiskResult": {
+ "properties": {
+ "aave": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/AaveRisk"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "chain_id": {
+ "title": "Chain Id",
+ "type": "integer"
+ },
+ "compound": {
+ "items": {
+ "$ref": "#/$defs/CompoundRisk"
+ },
+ "title": "Compound",
+ "type": "array"
+ },
+ "errors": {
+ "items": {
+ "$ref": "#/$defs/ProtocolErrorInfo"
+ },
+ "title": "Errors",
+ "type": "array"
+ },
+ "overall_tier": {
+ "title": "Overall Tier",
+ "type": "string"
+ },
+ "wallet_address": {
+ "title": "Wallet Address",
+ "type": "string"
+ }
+ },
+ "required": [
+ "wallet_address",
+ "chain_id",
+ "overall_tier"
+ ],
+ "title": "WalletRiskResult",
+ "type": "object"
+ }
+}
addedOutput schema / properties / results / items / $ref
Added value: +"#/$defs/WalletRiskResult"
removedOutput schema / properties / results / items / properties
Removed value: -{
- "aave": {
- "anyOf": [
- {
- "properties": {
- "health_factor": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "title": "Health Factor"
- },
- "liquidation_threshold_bps": {
- "title": "Liquidation Threshold Bps",
- "type": "integer"
- },
- "ltv_bps": {
- "title": "Ltv Bps",
- "type": "integer"
- },
- "risk_tier": {
- "title": "Risk Tier",
- "type": "string"
- },
- "total_collateral_usd": {
- "title": "Total Collateral Usd",
- "type": "number"
- },
- "total_debt_usd": {
- "title": "Total Debt Usd",
- "type": "number"
- }
- },
- "required": [
- "health_factor",
- "risk_tier",
- "total_collateral_usd",
- "total_debt_usd",
- "liquidation_threshold_bps",
- "ltv_bps"
- ],
- "title": "AaveRisk",
- "type": "object"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "chain_id": {
- "title": "Chain Id",
- "type": "integer"
- },
- "compound": {
- "items": {
- "properties": {
- "base_asset_symbol": {
- "title": "Base Asset Symbol",
- "type": "string"
- },
- "borrow_balance_raw": {
- "title": "Borrow Balance Raw",
- "type": "string"
- },
- "is_liquidatable": {
- "title": "Is Liquidatable",
- "type": "boolean"
- },
- "market_address": {
- "title": "Market Address",
- "type": "string"
- },
- "market_name": {
- "title": "Market Name",
- "type": "string"
- },
- "risk_tier": {
- "title": "Risk Tier",
- "type": "string"
- }
- },
- "required": [
- "market_name",
- "market_address",
- "base_asset_symbol",
- "is_liquidatable",
- "borrow_balance_raw",
- "risk_tier"
- ],
- "title": "CompoundRisk",
- "type": "object"
- },
- "title": "Compound",
- "type": "array"
- },
- "errors": {
- "items": {
- "properties": {
- "error": {
- "title": "Error",
- "type": "string"
- },
- "protocol": {
- "title": "Protocol",
- "type": "string"
- }
- },
- "required": [
- "protocol",
- "error"
- ],
- "title": "ProtocolErrorInfo",
- "type": "object"
- },
- "title": "Errors",
- "type": "array"
- },
- "overall_tier": {
- "title": "Overall Tier",
- "type": "string"
- },
- "wallet_address": {
- "title": "Wallet Address",
- "type": "string"
- }
-}
removedOutput schema / properties / results / items / required
Removed value: -[
- "wallet_address",
- "chain_id",
- "overall_tier"
-]
removedOutput schema / properties / results / items / title
Removed value: -"WalletRiskResult"
removedOutput schema / properties / results / items / type
Removed value: -"object"
addedOutput schema / properties / summary / $ref
Added value: +"#/$defs/RiskSummary"
removedOutput schema / properties / summary / properties
Removed value: -{
- "caution_count": {
- "title": "Caution Count",
- "type": "integer"
- },
- "critical_count": {
- "title": "Critical Count",
- "type": "integer"
- },
- "healthy_count": {
- "title": "Healthy Count",
- "type": "integer"
- },
- "liquidatable_count": {
- "title": "Liquidatable Count",
- "type": "integer"
- },
- "no_debt_count": {
- "title": "No Debt Count",
- "type": "integer"
- },
- "total_wallets": {
- "title": "Total Wallets",
- "type": "integer"
- },
- "warning_count": {
- "title": "Warning Count",
- "type": "integer"
- }
-}
removedOutput schema / properties / summary / required
Removed value: -[
- "total_wallets",
- "liquidatable_count",
- "critical_count",
- "warning_count",
- "caution_count",
- "healthy_count",
- "no_debt_count"
-]
removedOutput schema / properties / summary / title
Removed value: -"RiskSummary"
removedOutput schema / properties / summary / type
Removed value: -"object"