Advanced techniques
KP Mundane Ingress Chart (Quarterly)
get_mundane_ingress
Cast a KP chart for the moment the Sun reaches sidereal 0° Aries (annual), 0° Cancer (Q2), 0° Libra (Q3), and 0° Capricorn (Q4) for a chosen location. Read 10th CSL for governance/status, 6th CSL for crisis windows, 1st CSL for public mood, 7th CSL for foreign relations. The Aries ingress is the annual baseline; the other three refine quarterly themes. LOCATION-BASED — provide latitude / longitude / utc_offset_minutes (not birth data).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| latitude | number | Yes | Location latitude in decimal degrees. |
| longitude | number | Yes | Location longitude in decimal degrees. |
| utc_offset_minutes | number | Yes | UTC offset in minutes for the location. |
| year | number | No | Year to compute ingresses for (default: current year). |
| include_all_quarters | boolean | No | Include Cancer/Libra/Capricorn ingresses (default: true). False = Aries only. |
| ayanamsa | enum: kp | lahiri | raman | true_chitra | … | No | Ayanamsa system (default: kp). |
Example call
Send the request as a standard MCP tools/call:
http
POST https://mcp.lumin.guru/mcp
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_mundane_ingress",
"arguments": {
"latitude": 0,
"longitude": 0,
"utc_offset_minutes": 0
}
}
}Engine endpoint
This tool delegates to the kp-engine endpoint:
http
POST /v1/kp/mundane-ingressThe engine is a private internal service. All public access flows through the MCP server, which handles auth, rate limiting, and response compaction.