Skip to main content
Glama

KNMI Weather MCP

by wolkwork
__init__.py634 B
"""KNMI Weather MCP Server package.""" __version__ = "0.1.0" from datetime import datetime from typing import Optional from pydantic import BaseModel, Field class Coordinates(BaseModel): latitude: float = Field(..., ge=-90, le=90) longitude: float = Field(..., ge=-180, le=180) class WeatherStation(BaseModel): id: str name: str coordinates: Coordinates elevation: float station_type: Optional[str] = None region: Optional[str] = None class WeatherData(BaseModel): temperature: float humidity: float condition: str timestamp: datetime station_name: str station_id: str

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