Skip to main content
Glama

KNMI Weather MCP

by wolkwork
import pytest from knmi_weather_mcp.models import Coordinates, WeatherStation from knmi_weather_mcp.station import StationManager @pytest.mark.asyncio async def test_station_manager_initialization(): manager = StationManager() assert isinstance(manager.stations, dict) @pytest.mark.asyncio async def test_station_refresh(): manager = StationManager() await manager.refresh_stations() assert len(manager.stations) > 0 # Verify station data structure for station in manager.stations.values(): assert isinstance(station, WeatherStation) assert isinstance(station.coordinates, Coordinates) assert -90 <= station.coordinates.latitude <= 90 assert -180 <= station.coordinates.longitude <= 180

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/wolkwork/knmi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server