Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Weatherapi

БесплатноНе проверен

Provides weather data tools using the WeatherAPI.com service, including current conditions, forecasts, location search, astronomy, and air quality.

GitHubEmbed

Описание

Provides weather data tools using the WeatherAPI.com service, including current conditions, forecasts, location search, astronomy, and air quality.

README

An MCP server that provides weather data tools using the WeatherAPI.com service.

Features

This MCP server provides the following tools:

  • get_current_weather: Get current weather conditions for any location
  • get_forecast: Get weather forecast (1-10 days) with hourly breakdowns
  • search_location: Search for locations by name
  • get_astronomy: Get sunrise, sunset, moon phases, and other astronomy data
  • get_air_quality: Get air quality index and pollutant levels

Setup

  1. Get a free API key from WeatherAPI.com

  2. Set the API key as an environment variable:

    # Windows PowerShell
    $env:WEATHERAPI_KEY = "your_api_key_here"
    
    # Or add to your profile for persistence
    # Edit $PROFILE and add:
    # $env:WEATHERAPI_KEY = "your_api_key_here"
    
  3. Install using uvx:

    uvx mcp-weatherapi
    

Usage with MCP Clients

Add this to your MCP configuration:

{
  "mcpServers": {
    "weatherapi": {
      "command": "uvx",
      "args": [
        "--from", "git+https://github.com/bsparks/mcp-weatherapi.git",
        "mcp-weatherapi"
      ],
      "env": {
        "WEATHERAPI_KEY": "your_api_key_here"
      }
    }
  }
}

Development

  1. Clone the repository

  2. Install dependencies:

    pip install -e .
    
  3. Set your API key:

    $env:WEATHERAPI_KEY = "your_api_key_here"
    
  4. Run the server:

    python weather_server.py
    

Available Tools

get_current_weather(location: str)

Get current weather conditions including temperature, wind, humidity, air quality, etc.

Example: get_current_weather("London")

get_forecast(location: str, days: int = 3)

Get weather forecast for 1-10 days with daily summaries and hourly data.

Example: get_forecast("New York", 5)

search_location(query: str)

Search for locations by name (minimum 3 characters).

Example: search_location("Paris")

get_astronomy(location: str, date: Optional[str] = None)

Get astronomy information including sunrise, sunset, moonrise, moonset, and moon phases.

Example: get_astronomy("Tokyo", "2025-11-07")

get_air_quality(location: str)

Get air quality index and pollutant levels.

Example: get_air_quality("Beijing")

API Documentation

For more information about the WeatherAPI.com service, visit: https://www.weatherapi.com/docs/

License

MIT

from github.com/bsparks/mcp-weatherapi

Установка Weatherapi

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/bsparks/mcp-weatherapi

FAQ

Weatherapi MCP бесплатный?

Да, Weatherapi MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Weatherapi?

Нет, Weatherapi работает без API-ключей и переменных окружения.

Weatherapi — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Weatherapi в Claude Desktop, Claude Code или Cursor?

Открой Weatherapi на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Weatherapi with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development