UNPKG

celestial-position-mcp

Version:

MCP server for celestial object altitude-azimuth coordinates

20 lines (19 loc) 599 B
/** * Observer configuration with hardcoded location * Update these values with your actual location */ export const OBSERVER_CONFIG = { // Vancouver, Canada coordinates latitude: 49.2827, // Vancouver latitude longitude: -123.1207, // Vancouver longitude (negative for west) altitude: 30, // elevation in meters temperature: 15, // default temperature in Celsius pressure: 1013.25 // default pressure in hPa }; /** * Server configuration */ export const SERVER_CONFIG = { port: 3008, // Changed from 3005 and 3007 which were already in use host: 'localhost' };