Visual Crossing Weather MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Visual Crossing Weather MCPwhat was the weather in New York City on July 4th, 2023?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
visual_crossing_mcp
Basic MCP server for Visual Crossing historical weather data
Enables retrieval of historical weather data from Visual Crossing.
The Visual Crossing api is described here: https://www.visualcrossing.com/resources/documentation/weather-api/timeline-weather-api/
The MCP server can retrieve the following data for a specified location for a date or date range:
temperature
max temperature
min temperature
preciptitation
solar radiation
cloud cover
snow depth
weather type
weather conditions
heat index
wind chill
First install the requirements:
pip install -r requirements.txtCreate or modify the .env file in the project root to read as follows:
API_KEY=XXXXXXXXXXX
...where XXXXXXXXXXX is your API key from Visual Crossing
To enable in the Claude client, add the following to the claude_desktop_config.json file:
"weather": {
"command": "C:\\Programs\\Python\\Python311\\python.exe",
"args": ["C:\\Path\\To\\Server\\Python\\File\\visual_crossing_mcp.py"]
}This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for Xweather weather data: conditions, forecasts, alerts, and more.
Visual Crossing Weather MCP — wraps the Visual Crossing Weather Timeline API
MCP server for weather with reasoning — umbrella advice, outdoor checks, city comparisons.
An MCP server for weather information by @kulybaba
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides tools to retrieve current weather conditions and daily forecasts for cities worldwide using the Open-Meteo API. This Python-based server enables MCP-compatible clients to access real-time meteorological data through a standardized interface.2MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for checking historical weather data for cities using OpenWeather API. Exposes a get_historical_weather tool.MIT
- AlicenseNot gradedqualityDmaintenanceMCP Server for global weather, forecasts, air quality, and climate data using Open-Meteo, no API key required.MIT
- FlicenseNot gradedqualityDmaintenanceMCP server that provides current weather and forecasts via Open-Meteo API, with an optional ML-based next-day max temperature prediction.-