WeatherAPI 气象数据
STDIO提供天气和空气质量数据的MCP服务器
提供天气和空气质量数据的MCP服务器
An MCP server that provides current weather and air quality data using WeatherAPI.
Add the following configuration to your Windsurf MCP config file:
{ "mcpServers": { "weather": { "command": "npx", "args": ["-y", "@swonixs/weatherapi-mcp"], "env": { "WEATHER_API_KEY": "YOUR_API_KEY_HERE" } } } }
Replace YOUR_API_KEY_HERE
with the API key you obtained from WeatherAPI.com.
Get current weather data for a specified city.
Parameters:
location
(string): City nameExample response:
{ "location": "London", "country": "United Kingdom", "temp_c": 15.0, "condition": "Partly cloudy", "humidity": 71, "wind_kph": 14.4, "air_quality": { "co": 230.3, "no2": 13.5, "o3": 52.9, "pm2_5": 8.5, "pm10": 12.1, "us-epa-index": 1 } }
MIT