LocalTides MCP Server

MIT License
1

get_next_moon_phase

Calculate future moon phase occurrences by specifying a starting date, desired phase, and count. Output in JSON or text format for planning or astronomical tracking.

Instructions

Get the next occurrence(s) of a specific moon phase

Input Schema

NameRequiredDescriptionDefault
countNoNumber of occurrences to return. Defaults to 1.
dateNoStarting date (YYYY-MM-DD format). Defaults to current date.
formatNoOutput format (json or text)
phaseYesMoon phase to find

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "count": { "description": "Number of occurrences to return. Defaults to 1.", "exclusiveMinimum": 0, "type": "number" }, "date": { "description": "Starting date (YYYY-MM-DD format). Defaults to current date.", "type": "string" }, "format": { "description": "Output format (json or text)", "enum": [ "json", "text" ], "type": "string" }, "phase": { "description": "Moon phase to find", "enum": [ "New Moon", "First Quarter", "Full Moon", "Last Quarter" ], "type": "string" } }, "required": [ "phase" ], "type": "object" }
ID: xv9thnwdng