Skip to main content
Glama

Photography Guide

get_photography_guide
Read-onlyIdempotent

Returns Sedona photography locations with today's real golden hour / blue hour times, current light quality score, and camera settings for each scenario. Great for landscape and astrophotography planning.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
locationNoFilter to a single location — omit for all 6

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYes
locationsYes
today_timesYes
location_contextYes
current_light_phaseYes
current_light_scoreNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changed
    • changedOutput schema / properties / current_light_score / type
      Previous value: -"number"New value: +[
      +  "number",
      +  "string"
      +]
    • addedOutput schema / properties / locations / anyOf
      Added value: +[
      +  {
      +    "items": {
      +      "additionalProperties": {},
      +      "type": "object"
      +    },
      +    "type": "array"
      +  },
      +  {
      +    "additionalProperties": {},
      +    "type": "object"
      +  }
      +]
    • removedOutput schema / properties / locations / items
      Removed value: -{
      -  "additionalProperties": {},
      -  "type": "object"
      -}
    • removedOutput schema / properties / locations / type
      Removed value: -"array"
    • removedOutput schema / properties / today_times / additionalProperties / type
      Removed value: -"string"
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "current_light_phase": {
      +      "type": "string"
      +    },
      +    "current_light_score": {
      +      "type": "number"
      +    },
      +    "date": {
      +      "type": "string"
      +    },
      +    "location_context": {
      +      "type": "string"
      +    },
      +    "locations": {
      +      "items": {
      +        "additionalProperties": {},
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "today_times": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  },
      +  "required": [
      +    "location_context",
      +    "date",
      +    "current_light_phase",
      +    "today_times",
      +    "locations"
      +  ],
      +  "type": "object"
      +}
  3. Added

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, etc. The description adds real-time context ('today's real golden hour / blue hour times', 'current light quality score') and specific outputs (camera settings). No contradictions with annotations.

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?

Two sentences front-load key outputs and use case. No filler words; every phrase adds value.

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

Completeness4/5

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

Given the output schema (present but not shown) and annotations, the description is sufficiently complete. It explains what the tool returns and when to use it, though it could mention pagination or format if relevant.

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?

The schema has 100% coverage with one optional enum parameter. The description adds that omitting the location returns all 6 locations, providing a slight enhancement over the schema. Baseline 3 is appropriate.

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 returns Sedona photography locations with golden hour/blue hour times, light quality score, and camera settings. It uses specific verbs and resources, distinguishing it from sibling tools like get_stargazing_conditions or get_sun_times.

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 says 'Great for landscape and astrophotography planning,' which implies appropriate use cases. However, it does not explicitly state when not to use or provide alternatives among the many sibling tools, so it's not fully explicit.

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.

Resources