All tools
Chart and reference
Monthly Ephemeris
get_ephemeris
Daily sidereal positions for all 9 KP planets across one month. No birth data required. Returns '{ month, totalDays, days: [{ date, planets: { Sun..Ketu: { siderealLongitude, sign, isRetrograde, dailyMotion } } }], pagination, pageNote }'. **Paged by day**, since a month of 9 planets does not fit one response. If you want one date, ask for that date's page rather than reading the month. Use for: external transit-planning workflows or generating ephemeris tables.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| year | number | Yes | Year (e.g., 2026) |
| month | number | Yes | Month (1-12) |
Example call
Send the request as a standard MCP tools/call:
http
POST https://mcp.lumin.guru/mcp
Authorization: Bearer mcp_yourkey...
Accept: application/json, text/event-stream
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_ephemeris",
"arguments": {
"year": 2026,
"month": 6
}
}
}