LocalTides MCP Server

MIT License
1

get_sun_times_range

Retrieve sunrise, sunset, and other sun event times for a specific date range and location. Input start date, end date, latitude, and longitude to get results in JSON or text format.

Instructions

Get sun rise/set and other sun event times for a date range and location

Input Schema

NameRequiredDescriptionDefault
end_dateYesEnd date (YYYY-MM-DD format)
formatNoOutput format (json or text)
latitudeYesLatitude for location-specific calculations
longitudeYesLongitude for location-specific calculations
start_dateYesStart date (YYYY-MM-DD format)
timezoneNoTimezone for the results. Defaults to UTC.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "end_date": { "description": "End date (YYYY-MM-DD format)", "type": "string" }, "format": { "description": "Output format (json or text)", "enum": [ "json", "text" ], "type": "string" }, "latitude": { "description": "Latitude for location-specific calculations", "maximum": 90, "minimum": -90, "type": "number" }, "longitude": { "description": "Longitude for location-specific calculations", "maximum": 180, "minimum": -180, "type": "number" }, "start_date": { "description": "Start date (YYYY-MM-DD format)", "type": "string" }, "timezone": { "description": "Timezone for the results. Defaults to UTC.", "type": "string" } }, "required": [ "start_date", "end_date", "latitude", "longitude" ], "type": "object" }
ID: xv9thnwdng