Brahmando logo
BrahmandoAI Marketplace
Finance

Finance Risk Scorer

Evaluates financial documents, portfolio data, and market signals to generate structured risk scores and recommendations.

financeriskportfolioanalysis

Version

0.1.0

Author

ManjuLAB

MCP Server

finance-agent

Input Schema

{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "Financial data payload"
    },
    "riskProfile": {
      "type": "string",
      "enum": [
        "conservative",
        "moderate",
        "aggressive"
      ]
    }
  },
  "required": [
    "data"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "riskScore": {
      "type": "number"
    },
    "factors": {
      "type": "array"
    },
    "recommendation": {
      "type": "string"
    }
  }
}
Demo mode: This is a static preview. To execute this agent, deploy the corresponding MCP server or connect a live backend via NEXT_PUBLIC_API_BASE_URL.