Skip to main content
Glama
jalaj-pandey

Weather MCP Tool

by jalaj-pandey

Инструмент Weather MCP (ориентирован на Индию)

Сервер MCP (Model Context Protocol), использующий API OpenWeatherMap для предоставления:

  • Погодные условия в реальном времени

  • 5-дневные прогнозы погоды

  • Данные о качестве воздуха

  • Поиск местоположения


🚀 Настройка

  1. Требуется Python 3.10+ .

  2. Установить зависимости:

    pip install -r requirements.txt
  3. Получите ключ API от OpenWeatherMap .

  4. Создайте файл .env в корневой папке:

    OPENWEATHER_API_KEY=your_api_key_here

Related MCP server: MCP Weather Free

🛠 Доступные инструменты

get_current_weather(location: str)

Возвращает текущую погоду для указанного местоположения.

get_weather_forecast(location: str, days: int = 5)

Возвращает прогноз погоды (до 5 дней) для указанного местоположения.

get_air_quality(location: str)

Возвращает показатели качества воздуха и уровень AQI.

search_location(query: str)

Возвращает до 5 совпадений местоположений на основе запроса.


🧪 Пример вывода (Индия)

Текущая погода (Дели)

{
  "location": {
    "name": "Delhi",
    "country": "IN",
    "lat": 28.6139,
    "lon": 77.2090
  },
  "temperature": {
    "current": 32.4,
    "feels_like": 35.1,
    "min": 30.0,
    "max": 36.2
  },
  "weather_condition": {
    "main": "Haze",
    "description": "smoky haze",
    "icon": "50d"
  },
  "wind": {
    "speed": 4.1,
    "deg": 135
  },
  "clouds": 20,
  "humidity": 58,
  "pressure": 1005,
  "visibility": 5000,
  "sunrise": "2025-03-16T06:20:00",
  "sunset": "2025-03-16T18:40:00",
  "timestamp": "2025-03-16T14:30:00"
}

Прогноз погоды (Мумбаи)

{
  "location": {
    "name": "Mumbai",
    "country": "IN",
    "lat": 19.0760,
    "lon": 72.8777
  },
  "forecast": [
    {
      "datetime": "2025-03-16T12:00:00",
      "temperature": {
        "temp": 33.2,
        "feels_like": 37.8,
        "min": 31.5,
        "max": 34.0
      },
      "weather_condition": {
        "main": "Clouds",
        "description": "scattered clouds",
        "icon": "03d"
      },
      "wind": {
        "speed": 3.9,
        "deg": 200
      },
      "clouds": 40,
      "humidity": 70,
      "pressure": 1008,
      "visibility": 10000,
      "pop": 0.1
    }
  ],
  "days": 5
}

Качество воздуха (Бангалор)

{
  "location": {
    "name": "Bengaluru",
    "country": "IN",
    "lat": 12.9716,
    "lon": 77.5946
  },
  "air_quality_index": 2,
  "air_quality_level": "Fair",
  "components": {
    "co": 102.4,
    "no": 0.0,
    "no2": 12.6,
    "o3": 30.5,
    "so2": 3.8,
    "pm2_5": 45.1,
    "pm10": 60.2,
    "nh3": 1.5
  },
  "timestamp": "2025-03-16T14:30:00"
}

Поиск местоположения

{
  "results": [
    {
      "name": "Kolkata",
      "state": "West Bengal",
      "country": "IN",
      "lat": 22.5726,
      "lon": 88.3639
    },
    {
      "name": "Kolkata",
      "state": "",
      "country": "IN",
      "lat": 22.5675,
      "lon": 88.3700
    }
  ]
}

🧰 Обработка ошибок

Все инструменты возвращают четкие сообщения об ошибках:

{ "error": "Location 'XYZ' not found" }

📌 Заметки

  • Убедитесь, что файл .env настроен правильно.

  • Активация ключей API может занять некоторое время.

  • Бесплатный уровень OpenWeatherMap: 60 вызовов API в минуту.


🧑‍💻 Запустите сервер

mcp dev main.py

После запуска вы сможете использовать этот сервер с MCP-совместимыми клиентами, такими как Claude Desktop или другими инструментами автоматизации.


F
license - not found
Not graded
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    An MCP server that provides real-time weather information including temperature, humidity, wind speed, and sunrise/sunset times through the OpenWeatherMap API.
    4
    1
    5
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that provides real-time weather data, hourly forecasts, and daily summaries using the free Open-Meteo API with no API key required. It enables users to search for weather conditions by specific coordinates or city names across multiple measurement units.
    1
    MIT
  • F
    license
    C
    quality
    D
    maintenance
    An MCP server that provides access to current weather data and 5-day forecasts via the Open Weather13 API. It enables users to retrieve weather information using city names or geographic coordinates across various languages.
    3

View all related MCP servers

Related MCP Connectors

  • This MCP server provides seamless access to Malaysia's government open data, including datasets, w…

  • OpenWeather MCP — wraps the OpenWeatherMap API (openweathermap.org)

  • 350+ production-ready APIs through one MCP server — weather, geocoding, validation, financial data.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jalaj-pandey/Weather-MCP-Tool'

If you have feedback or need assistance with the MCP directory API, please join our Discord server