Skip to content
Lumindocs
UseBuildChangelog
Open Lumin
All tools

Transit and timing

Transit Crossings

get_transit_crossings

All KP sub-lord boundary crossings for the requested planets within a date window (max 366 days). Uses 1-hour coarse scan + binary-search refinement to minute precision. Returns '{ crossings: [{ planet, crossingTimeUTC, fromKP, toKP, fromSubLord, toSubLord, isNakshatraChange, isSignChange }], totalCrossings, planetsSearched }'.

Parameters

NameTypeRequiredDescription
startDatetimestringYesStart date (ISO 8601)
endDatetimestringYesEnd date (ISO 8601, max 366 days from start)
planetsarray<planet name>NoPlanets to track (defaults to all 9).

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_transit_crossings",
    "arguments": {
      "startDatetime": "...",
      "endDatetime": "..."
    }
  }
}

Engine endpoint

This tool delegates to the kp-engine endpoint:

http
POST /v1/kp/transit/crossings

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