Back to Docs

forecast_dasha

analysis

Generates a multi-level dasha forecast for a natal chart, projecting Maha, Antar, Pratyantar, Sookshma, and Prana periods over a requested window. Returns period-by-period domain activations, life-aspect overlays, and cross-dasha confluences.

When to use

For life-trajectory planning, identifying upcoming period transitions, and understanding how dasha rulers activate life domains over months or years.

When NOT to use

For point-in-time transit snapshots (use query_transits) or electional timing (use query_muhurtha).

Input Schema

{
  "type": "object",
  "properties": {
    "chart": {
      "type": "object",
      "description": "The natal chart — session_key or inline chart_artifact.",
      "properties": {
        "session_key": {
          "type": "string"
        },
        "chart_artifact": {
          "type": "object"
        }
      }
    },
    "date_range": {
      "type": "object",
      "properties": {
        "start": {
          "type": "string",
          "format": "date"
        },
        "end": {
          "type": "string",
          "format": "date"
        }
      },
      "required": [
        "start",
        "end"
      ]
    },
    "depth": {
      "type": "string",
      "enum": [
        "maha",
        "antar",
        "pratyantar"
      ],
      "default": "antar",
      "description": "Maximum dasha depth to expand in the forecast."
    },
    "school_profile": {
      "type": "string",
      "enum": [
        "parashari",
        "jaimini",
        "kp"
      ],
      "default": "parashari"
    },
    "locale": {
      "type": "string",
      "enum": [
        "en",
        "hi"
      ],
      "default": "en"
    }
  },
  "required": [
    "chart",
    "date_range"
  ]
}

Output

Array of DashaPeriod objects within the requested window, each with: maha_ruler, antar_ruler (if depth >= antar), pratyantar_ruler (if depth >= pratyantar), start/end dates, domain_activations[], life_aspect_overlay, and bilingual summary.

Example Request

{
  "jsonrpc": "2.0",
  "id": 9,
  "method": "tools/call",
  "params": {
    "name": "forecast_dasha",
    "arguments": {
      "chart": {
        "session_key": "session_001"
      },
      "date_range": {
        "start": "2026-01-01",
        "end": "2028-12-31"
      },
      "depth": "antar",
      "school_profile": "parashari",
      "locale": "en"
    }
  }
}

Example Response

{
  "jsonrpc": "2.0",
  "id": 9,
  "result": {
    "content": [
      {
        "type": "resource",
        "resource": {
          "uri": "kundalimcp://dasha/forecast/aaa001",
          "mimeType": "application/json",
          "text": "{\"periods\":[{\"maha_ruler\":\"Guru\",\"antar_ruler\":\"Shani\",\"start\":\"2026-01-01\",\"end\":\"2028-06-12\",\"domain_activations\":[\"career\",\"discipline\"],\"life_aspect_overlay\":\"karmic responsibilities, structured growth\"}]}"
        }
      }
    ]
  }
}