Authenticated MCP SSE Server

export const NWS_API_BASE = "https://api.weather.gov"; export const USER_AGENT = "weather-app/1.0"; // Helper function for making NWS (National Weather Service) API requests // Helper function for making NWS (National Weather Service) API requests export async function makeNWSRequest<T>(url: string): Promise<T | null> { const headers = { "User-Agent": USER_AGENT, Accept: "application/geo+json", }; try { const response = await fetch(url, { headers }); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } return (await response.json()) as T; } catch (error) { console.error("Error making NWS request:", error); return null; } }