/
Server configuration and capabilities from the MCP manifest
Size: 7,359 bytes (1,840 tokens)
Tools Found: 9
Analysis ID: cl8otxxg
This MCP server provides various weather and air quality data APIs for global cities.
Stars
Registry ID: 76511fb8-3c99-44cd-903a-fe5ef2370b03
Added to Registry: 9/21/2025
Last Updated: 9/22/2025
Last Seen: 9/22/2025
Default Branch: master
Last Push: 9/10/2025
Open Issues: 0
Historical performance and growth metrics over time
{
"name": "io.github.overstarry/qweather-mcp",
"tags": [
"cli",
"qweather",
"mcp",
"tool"
],
"tools": [
{
"name": "get-weather-now",
"description": "Real-time weather API provides current weather conditions for global cities. Available data includes: temperature, feels-like temperature, weather conditions, wind direction, wind force scale, relative humidity, precipitation, atmospheric pressure, and visibility. The data is updated in real-time to provide the most accurate current weather information.",
"input_schema": {
"type": "object",
"required": [
"cityName"
],
"properties": {
"cityName": {
"type": "string",
"description": "Name of the city to look up weather for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-weather-forecast",
"description": "Weather forecast API provides detailed weather predictions for global cities, supporting forecasts from 3 to 30 days. Available data includes: sunrise/sunset times, moonrise/moonset times, temperature range, weather conditions, wind direction and speed, relative humidity, precipitation, atmospheric pressure, cloud cover, and UV index. The forecast is updated daily to ensure accuracy.",
"input_schema": {
"type": "object",
"required": [
"cityName",
"days"
],
"properties": {
"days": {
"enum": [
"3d",
"7d",
"10d",
"15d",
"30d"
],
"type": "string",
"description": "Number of forecast days"
},
"cityName": {
"type": "string",
"description": "Name of the city to look up weather for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-minutely-precipitation",
"description": "Minute-level precipitation forecast API provides precise precipitation predictions for the next 2 hours in global cities. Available data includes precipitation type (rain/snow) and precipitation amount for each minute. This high-precision forecast is particularly useful for outdoor activity planning and real-time weather monitoring.",
"input_schema": {
"type": "object",
"required": [
"cityName"
],
"properties": {
"cityName": {
"type": "string",
"description": "Name of the city to look up precipitation forecast for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-hourly-forecast",
"description": "Hourly weather forecast API provides detailed weather information for global cities for the next 24-168 hours. Available data includes: temperature, weather conditions, wind force, wind speed, wind direction, relative humidity, atmospheric pressure, precipitation probability, dew point temperature, and cloud cover. The forecast data is updated hourly to ensure accuracy.",
"input_schema": {
"type": "object",
"required": [
"cityName",
"hours"
],
"properties": {
"hours": {
"enum": [
"24h",
"72h",
"168h"
],
"type": "string",
"default": "24h",
"description": "Number of forecast hours (24h, 72h, or 168h)"
},
"cityName": {
"type": "string",
"description": "Name of the city to look up weather for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-weather-warning",
"description": "Weather Warning API provides real-time weather warning data issued by official authorities in China and multiple countries/regions worldwide. The data includes warning issuer, publication time, warning title, detailed warning information, warning level, warning type, and other relevant information.",
"input_schema": {
"type": "object",
"required": [
"cityName"
],
"properties": {
"cityName": {
"type": "string",
"description": "Name of the city to look up weather warnings for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-weather-indices",
"description": "Weather indices forecast API provides various life indices for cities worldwide. Supports both 1-day and 3-day forecasts. Available indices types: Type 0: All indices types, Type 1: Sport, Type 2: Car Wash, Type 3: Dressing, Type 4: Fishing, Type 5: UV, Type 6: Travel, Type 7: Allergy, Type 8: Cold Risk, Type 9: Comfort, Type 10: Wind, Type 11: Sunglasses, Type 12: Makeup, Type 13: Sunscreen, Type 14: Traffic, Type 15: Sports Spectating, Type 16: Air Quality. Note: Not all indices are available for every city. International cities mainly support types 1, 2, 4, and 5.",
"input_schema": {
"type": "object",
"required": [
"cityName",
"type",
"days"
],
"properties": {
"days": {
"enum": [
"1d",
"3d"
],
"type": "string",
"default": "1d",
"description": "Number of forecast days (1d or 3d)"
},
"type": {
"enum": [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16"
],
"type": "string",
"description": "Type of weather index to retrieve"
},
"cityName": {
"type": "string",
"description": "Name of the city to look up weather indices for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-air-quality",
"description": "Real-time Air Quality API provides air quality data for specific locations with 1x1 kilometer precision. Includes AQI based on local standards of different countries/regions, AQI levels, colors, primary pollutants, QWeather universal AQI, pollutant concentrations, sub-indices, health advice, and related monitoring station information.",
"input_schema": {
"type": "object",
"required": [
"cityName"
],
"properties": {
"cityName": {
"type": "string",
"description": "Name of the city to look up air quality for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-air-quality-hourly",
"description": "Hourly Air Quality Forecast API provides air quality data for the next 24 hours, including AQI, pollutant concentrations, sub-indices, and health advice. The data includes various air quality standards (such as QAQI, GB-DEFRA, etc.) and specific concentrations of pollutants like PM2.5, PM10, NO2, O3, SO2.",
"input_schema": {
"type": "object",
"required": [
"cityName"
],
"properties": {
"cityName": {
"type": "string",
"description": "Name of the city to look up air quality forecast for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
},
{
"name": "get-air-quality-daily",
"description": "Daily Air Quality Forecast API provides air quality predictions for the next 3 days, including AQI values, pollutant concentrations, and health recommendations. The data includes various air quality standards and specific concentrations of pollutants like PM2.5, PM10, NO2, O3, SO2.",
"input_schema": {
"type": "object",
"required": [
"cityName"
],
"properties": {
"cityName": {
"type": "string",
"description": "Name of the city to look up air quality forecast for"
}
}
},
"output_schema": {
"type": "object",
"properties": {
"content": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
}
],
"version": "1.0.12",
"categories": [],
"description": "QWeather MCP SDK CLI Tool"
}Forks
Watchers
Contributors
Last Push: 9/10/2025
Open Issues: 0