sentinel_risk_report
Generate AI risk reports with cross-chain health analysis, anomaly detection, and actionable recommendations for Chainlink ecosystem monitoring.
Instructions
Generate a comprehensive AI risk report with cross-chain health, anomaly analysis, and recommendations.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/mcp/server.ts:190-204 (handler)The handler for the sentinel_risk_report MCP tool, which orchestrates a cross-chain scan, anomaly detection, and generates a risk report in markdown format.
server.tool( "sentinel_risk_report", "Generate a comprehensive AI risk report with cross-chain health, anomaly analysis, and recommendations.", {}, async () => { const feeds = await crossChainScan(); const anomalies = detectAnomalies(feeds); const report = generateRiskReport(feeds, anomalies); const markdown = formatReportMarkdown(report); return { content: [{ type: "text", text: markdown }], }; } );