LocalTides MCP Server

MIT License
1

get_moon_phase

Retrieve precise moon phase details for any date and location. Specify coordinates and output format (JSON or text) for accurate astronomical data.

Instructions

Get moon phase information for a specific date

Input Schema

NameRequiredDescriptionDefault
dateNoDate to get moon phase for (YYYY-MM-DD format). Defaults to current date.
formatNoOutput format (json or text)
latitudeNoLatitude for location-specific calculations
longitudeNoLongitude for location-specific calculations

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "date": { "description": "Date to get moon phase for (YYYY-MM-DD format). Defaults to current date.", "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" } }, "type": "object" }
ID: xv9thnwdng