Skip to main content
Glama

Stellarhound — stargazing forecasts, dark-sky sites & aurora

get_stargazing_conditions

Read-only

Score the next nights for stargazing at a location (0-100 per night).

Use for "when should I stargaze this week near X", "is Saturday any good
for the Milky Way", trip planning. Each night combines the three-layer
cloud-cover forecast, moon illumination and up-fraction, and the
astronomical-darkness window; `best_window` names the best upcoming night.
Also returns the location's light-pollution estimate (approximate Bortle
class + what's visible at that darkness).

Args:
    lat: Latitude in decimal degrees (-90..90). You know city coordinates — pass them.
    lon: Longitude in decimal degrees (-180..180).
    nights: How many nights ahead to score, 1-16 (default 7; forecasts
        beyond ~7 nights are increasingly uncertain).

Returns {timezone, light_pollution, nights:[{date, darkness, moon, cloud,
score:{value, band, summary}}], best_window, uncertainty_note, attribution}.
Present scores/verdicts verbatim; skies beyond ~7 days are provisional.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latYes
lonYes
nightsNo

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, and destructiveHint=false. The description adds meaningful behavioral context beyond that: how scores are computed (three-layer cloud-cover, moon illumination, darkness window), the inclusion of a light-pollution estimate, and the uncertainty caveat ('forecasts beyond ~7 nights are increasingly uncertain'). It also instructs the agent to 'Present scores/verdicts verbatim' and notes that skies beyond 7 days are provisional, which are valuable behavioral traits.

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 well-structured and appropriately sized for the tool's complexity. It opens with the core purpose, follows with usage examples and calculation details, then provides a clear Args section and a compact Return structure. No sentence is wasted, and it remains readable despite its length.

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?

With no output schema, the description compensates by listing the return fields ({timezone, light_pollution, nights:[...], best_window, uncertainty_note, attribution}). It also covers edge cases like uncertainty, provisional data, and the instruction to present scores verbatim. This makes the tool fully understandable in context.

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?

The schema has no descriptions (0% coverage), so the description must fully explain parameters. It does: lat as 'decimal degrees (-90..90)', lon similarly, and nights with range, default, and uncertainty note. This gives the agent all necessary semantic information beyond the raw schema.

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 clearly states the tool's function: 'Score the next nights for stargazing at a location (0-100 per night).' It uses a specific verb ('score') and identifies the resource ('stargazing conditions') and scope ('at a location'). It distinguishes itself from sibling tools by emphasizing per-night scoring that combines cloud cover, moon, and darkness window, while siblings handle site finding, aurora, or light pollution.

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 provides explicit usage scenarios: 'Use for "when should I stargaze this week near X", "is Saturday any good for the Milky Way", trip planning.' This gives clear context for when to use the tool. However, it does not explicitly mention alternatives or conditions when not to use it, so it falls short of a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation4/5

The tools are mostly distinct: find_dark_sky_sites recommends locations, get_aurora_forecast handles aurora, get_light_pollution measures darkness, get_stargazing_conditions scores nights, and get_tonight_agenda gives a nightly plan. There is slight overlap between get_light_pollution and the light-pollution info embedded in get_stargazing_conditions and get_tonight_agenda, but the primary purposes are clear.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: find_dark_sky_sites, get_aurora_forecast, get_light_pollution, get_stargazing_conditions, get_tonight_agenda. The verbs (find, get) and nouns are descriptive and uniform, making the naming highly predictable.

Tool Count5/5

With 5 tools, the server is well-scoped for its purpose of stargazing forecasts and dark-sky site recommendations. Each tool covers a distinct aspect of the domain without redundancy, and the count is within the ideal range for a focused MCP server.

Completeness4/5

The tool surface covers the core stargazing workflow: finding dark sites, checking aurora, assessing light pollution, scoring nights, and getting a nightly agenda. A minor gap is the lack of a tool for detailed weather forecasts beyond the stargazing score, but the existing tools handle the primary use cases effectively.

Resources