Skip to content
Lumindocs
UseBuild
Open Lumin
All tools

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

NameTypeRequiredDescription
startDatetimestringYesStart datetime
endDatetimestringYesEnd datetime
interval_minutesnumberNoInterval 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/interval

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