Skip to main content
Glama
WorldWeatherOnline

World Weather Online MCP

Official

World Weather Online — MCP-сервер (Railway)

MCP-сервер для World Weather Online. Позволяет ИИ-ассистентам, таким как Claude, Cursor и другим, вызывать данные о погоде WWO напрямую в качестве инструментов.

Развертывание на Railway

Шаг 1 — Отправка в GitHub

  1. Создайте новый репозиторий на github.com (назовите его wwo-mcp-server)

  2. Откройте терминал в этой папке и выполните:

git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/YOUR_USERNAME/wwo-mcp-server.git
git push -u origin main

Шаг 2 — Развертывание на Railway

  1. Перейдите на https://railway.app и зарегистрируйтесь/войдите через GitHub

  2. Нажмите New ProjectDeploy from GitHub repo

  3. Выберите ваш репозиторий wwo-mcp-server

  4. Railway автоматически обнаружит Node.js и выполнит развертывание

Ваш сервер будет доступен по URL вида:

https://wwo-mcp-server-production.up.railway.app

Шаг 3 — Добавление пользовательского домена

  1. В панели управления Railway → ваш проект → SettingsNetworkingCustom Domain

  2. Введите mcp.worldweatheronline.com и нажмите Add

  3. Railway покажет вам значение CNAME, например:

wwo-mcp-server-production.up.railway.app
  1. Перейдите к вашему DNS-провайдеру и добавьте:

Тип

Имя

Значение

CNAME

mcp

wwo-mcp-server-production.up.railway.app

  1. SSL-сертификат будет предоставлен автоматически в течение нескольких минут

Шаг 4 — Тестирование

Посетите вашу конечную точку проверки работоспособности (health endpoint):

https://mcp.worldweatheronline.com/health

Протестируйте в MCP Inspector:

https://mcp.worldweatheronline.com/mcp?key=YOUR_WWO_API_KEY

Related MCP server: OpenWeather-OneCall3-MCP

Подключение ИИ-клиентов

Claude Desktop

Добавьте в ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "world-weather-online": {
      "url": "https://mcp.worldweatheronline.com/mcp?key=YOUR_API_KEY"
    }
  }
}

Cursor / Windsurf

Добавьте в .cursor/mcp.json:

{
  "mcpServers": {
    "world-weather-online": {
      "url": "https://mcp.worldweatheronline.com/mcp?key=YOUR_API_KEY"
    }
  }
}

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

Инструмент

Описание

get_weather

Текущие условия + прогноз на 14 дней

get_historical_weather

Погода в прошлом с 2008 года

get_marine_weather

Волнение, приливы, температура воды

get_ski_weather

Прогнозы для вершин/средних высот/оснований

search_location

Автозаполнение местоположения

get_astronomy

Восход, закат, фаза луны

get_timezone

Местное время + смещение UTC

get_climate_averages

Среднемесячные климатические показатели за 12 лет


Локальная разработка

npm install
npm run dev

Сервер запускается по адресу http://localhost:3000

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides weather data from WeatherAPI.com through MCP, enabling AI agents to query current conditions and forecasts via natural language.
    2 npm
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    A Model Context Protocol (MCP) server that provides weather data using the OpenWeather One Call API 3.0. This server allows AI agents to access current weather, forecasts, and historical weather data for any location.
    3
    5 npm
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    This MCP server provides access to Open-Meteo weather APIs including forecast, historical reanalysis, geocoding, air quality, marine weather, and flood risk data, enabling AI agents to retrieve weather information using natural language.
    7 npm
    MIT