Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
KNMI Weather MCP
Claim
by
wolkwork
GitHub
Location Services
Search
Python
MIT License
1
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
knmi-mcp
src
knmi_weather_mcp
src/knmi_weather_mcp/config.py
src/knmi_weather_mcp/__init__.py
src/knmi_weather_mcp/location.py
src/knmi_weather_mcp/models.py
src/knmi_weather_mcp/server.py
src/knmi_weather_mcp/station.py
src/knmi_weather_mcp/weather.py
from pydantic_settings import BaseSettings, SettingsConfigDict class Config(BaseSettings): model_config = SettingsConfigDict(env_file=".env") knmi_api_key: str port: int = 8001 config = Config()