Skip to main content
Glama
socraticsurge

mcp-server-panchangam

get_combustion_calendar

Find Asta and Udaya periods for five classical planets over a date range and city, indicating when each planet disappears into solar combustion and when it re-emerges.

Instructions

Returns Asta (heliacal setting / combustion entry) and Udaya (heliacal rising / re-emergence) periods for the five classical planets — Mercury, Venus, Mars, Jupiter, Saturn — over a date range for a given city. Asta marks when a planet becomes invisible due to proximity to the Sun; Udaya marks when it re-emerges. This matches the Drik Panchang Asta/Udaya calendar (sky-visibility criterion), not the fixed BPHS elongation Maudhya thresholds used in per-day combustion flags. Accuracy: within 1–2 days of Drik Panchang for most planets; Mars ±2 days. Max date range: 366 days. Args: start_date=YYYY-MM-DD, end_date=YYYY-MM-DD, city=city name (or pass latitude+longitude; timezone derived if omitted), planets=optional subset e.g. ['Saturn', 'Jupiter'] (default: all five).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoHyderabad
planetsNo
end_dateYes
latitudeNo
timezoneNo
longitudeNo
start_dateYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.15.1
  2. Removedv1.13.0
  3. First observedv1.0.0

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses accuracy tolerances, a maximum date range of 366 days, and timezone derivation behavior when latitude/longitude are passed. It does not explicitly describe side effects or behavior when the max range is exceeded, but the overall behavioral profile is well covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence earns its place: it defines the resource, clarifies the astronomical criterion and accuracy, states the date-range limit, and summarizes arguments. The core purpose is front-loaded and the helper detail is packed into a compact Args section.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's 7 parameters, optional coordinate-based input, and the presence of an output schema, the description is complete enough for correct invocation. It covers inputs, defaults, limits, accuracy, and the city-or-coordinates alternative. Minor omitted details such as exact error behavior for oversized ranges are not essential for selecting and calling the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description compensates by explaining all relevant parameters: start_date/end_date format, city name or latitude+longitude, timezone derivation, and optional planets subset with default. This adds real meaning beyond the bare schema property names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Returns Asta... and Udaya... periods for the five classical planets... over a date range for a given city.' It defines Asta and Udaya and explicitly contrasts with BPHS Maudhya thresholds, so it distinguishes itself from generic panchangam or per-day combustion-flag tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly positions this as the Drik Panchang sky-visibility Asta/Udaya calendar over a date range for a city, and explicitly states it is not the fixed BPHS elongation Maudhya thresholds used in per-day combustion flags. However, it does not explicitly name an alternative sibling tool to use for that per-day case, so the when-not guidance is present but not fully concrete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.