Skip to main content
Glama

Stellarhound — stargazing forecasts, dark-sky sites & aurora

get_tonight_agenda

Read-only

Get tonight's stargazing plan for a location: score, darkness window, and what to observe.

Use when the user asks "what can I see tonight" / "is tonight worth going
out". Returns tonight's sky score and darkness window plus a ranked agenda
of observing targets appropriate for the location's sky darkness.

Args:
    lat: Latitude in decimal degrees (-90..90).
    lon: Longitude in decimal degrees (-180..180).

Returns {timezone, light_pollution, tonight:{date, darkness, weather,...},
targets/agenda entries, attribution}. Report as returned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latYes
lonYes

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read. The description adds context about returning a ranked agenda and 'report as returned' but does not detail aspects like network calls, timezone handling, or any limitations. With good annotations, a 3 is appropriate, adding some value beyond annotations.

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

Conciseness4/5

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

The description is compact and well-structured, with a brief summary, usage context, args, and return format. Each section adds value. It could be slightly more concise but is not verbose.

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

Completeness3/5

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

Given the tool has 2 simple params, no output schema, and annotations cover safety, the description provides a clear return structure including the fields returned. It adequately explains the input and high-level output, but it does not elaborate on the 'weather' or 'darkness' fields or the agenda possibilities, leaving some ambiguity for a tool that returns complex structured data.

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

Parameters3/5

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

Schema has 0% description coverage, but the description provides clear meaning for lat and lon ('Latitude in decimal degrees (-90..90)') and 'Longitude in decimal degrees (-180..180)'. This goes beyond the schema, which only names them. Given only two simple params, this is adequate, though it doesn't add additional format details beyond schema.

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

Purpose4/5

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

The description uses a specific verb ('Get'), a clear resource ('tonight's stargazing plan'), and includes the key elements: sky score, darkness window, and observing targets. It distinguishes from siblings by focusing on the 'tonight' agenda for a location, but it does not explicitly differentiate from similar siblings like get_stargazing_conditions.

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

Usage Guidelines5/5

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

Explicitly states when to use: when the user asks 'what can I see tonight' or 'is tonight worth going out'. This clearly differentiates from siblings, which likely focus on broader conditions or forecasts. No exclusions provided but context is sufficient.

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