a year ago
A Model Context Protocol (MCP) server that provides hourly weather forecasts using the AccuWeather API.
Overview
This MCP server allows large language models (like Claude) to access real-time weather data. When integrated with an LLM, it enables the model to:
Fetch accurate, up-to-date weather forecasts Provide hourly weather data for any location Access temperature, conditions, and other weather details
Server Config
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@timlukahorstmann/mcp-weather"
],
"env": {
"ACCUWEATHER_API_KEY": "your_api_key_here"
}
}
}
}