Skip to content
Lumindocs
UseBuildChangelog
Open Lumin
All tools

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

NameTypeRequiredDescription
latitudenumberYesLocation latitude in decimal degrees.
longitudenumberYesLocation longitude in decimal degrees.
utc_offset_minutesnumberYesUTC offset in minutes for the location.
yearnumberNoYear to compute ingresses for (default: current year).
include_all_quartersbooleanNoInclude Cancer/Libra/Capricorn ingresses (default: true). False = Aries only.
ayanamsaenum: kp | lahiri | raman | true_chitra | …NoAyanamsa 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-ingress

The engine is a private internal service. All public access flows through the MCP server, which handles auth, rate limiting, and response compaction.