Transit and timing
Ruling Planet Intervals
get_rp_interval
Compute ruling planets at regular time intervals (e.g., every hour for 24 hours). Use to find windows when cosmic alignment supports a specific event.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| startDatetime | string | Yes | Start datetime |
| endDatetime | string | Yes | End datetime |
| interval_minutes | number | No | Interval between checks in minutes. Default: 60. |
Example call
Send the request as a standard MCP tools/call:
POST https://mcp.lumin.guru/mcp
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_rp_interval",
"arguments": {
"startDatetime": "...",
"endDatetime": "..."
}
}
}Engine endpoint
This tool delegates to the kp-engine endpoint:
POST /v1/kp/ruling-planets/intervalThe engine is a private internal service. All public access flows through the MCP server, which handles auth, rate limiting, and response compaction.