open-weather13
3.9
The open-weather13 MCP server provides real-time and forecast weather data for any location worldwide.
The open-weather13 MCP server aggregates and analyzes data from various sources, including global and local weather models, satellites, radars, and an extensive network of weather stations. This ensures accurate and up-to-date weather information. It offers real-time weather data, diverse data sources, and global coverage, making it a comprehensive tool for accessing weather information worldwide.
Features
- Real-Time Weather Data: Obtain current weather conditions for any specified location.
- Diverse Data Sources: Utilizes information from international weather models, satellites, and local weather stations for comprehensive analysis.
- Global Coverage: Access weather information for any location worldwide.
Usage with Different Platforms
python
python
import requests
# Example usage of open-weather13 MCP server
api_key = 'your_api_key'
city_name = 'London'
url = f'http://api.open-weather13.com/data/2.5/weather?q={city_name}&appid={api_key}'
response = requests.get(url)
weather_data = response.json()
print(weather_data)
javascript
javascript
const fetch = require('node-fetch');
// Example usage of open-weather13 MCP server
const apiKey = 'your_api_key';
const cityName = 'London';
const url = `http://api.open-weather13.com/data/2.5/weather?q=${cityName}&appid=${apiKey}`;
fetch(url)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));