@ryancardin/noaa-tides-currents-mcp-server
Version:
MCP Server that interfaces with NOAA Tides and Currents API using FastMCP
15 lines (14 loc) • 578 B
JavaScript
/**
* Moon phase names and their approximate ranges
*/
export var MoonPhaseName;
(function (MoonPhaseName) {
MoonPhaseName["NEW_MOON"] = "New Moon";
MoonPhaseName["WAXING_CRESCENT"] = "Waxing Crescent";
MoonPhaseName["FIRST_QUARTER"] = "First Quarter";
MoonPhaseName["WAXING_GIBBOUS"] = "Waxing Gibbous";
MoonPhaseName["FULL_MOON"] = "Full Moon";
MoonPhaseName["WANING_GIBBOUS"] = "Waning Gibbous";
MoonPhaseName["LAST_QUARTER"] = "Last Quarter";
MoonPhaseName["WANING_CRESCENT"] = "Waning Crescent";
})(MoonPhaseName || (MoonPhaseName = {}));