Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Global weather API: forecasts, historical data, marine, ski, astronomy and timezone.

README.md

World Weather Online — MCP Server (Railway)

MCP server for World Weather Online. Lets AI assistants like Claude, Cursor, and others call WWO weather data directly as tools.

Deploy to Railway

Step 1 — Push to GitHub

  1. Create a new repository on github.com (call it wwo-mcp-server)
  2. Open Terminal in this folder and run:
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

Step 2 — Deploy on Railway

  1. Go to https://railway.app and sign up / log in with GitHub
  2. Click New ProjectDeploy from GitHub repo
  3. Select your wwo-mcp-server repository
  4. Railway detects Node.js automatically and deploys

Your server will be live at a URL like: `` https://wwo-mcp-server-production.up.railway.app ``

Step 3 — Add Custom Domain

  1. In Railway dashboard → your project → SettingsNetworkingCustom Domain
  2. Type mcp.worldweatheronline.com and click Add
  3. Railway shows you a CNAME value like:
   wwo-mcp-server-production.up.railway.app
  1. Go to your DNS provider and add:

| Type | Name | Value | |-------|------|------------------------------------------------| | CNAME | mcp | wwo-mcp-server-production.up.railway.app |

  1. SSL certificate is provisioned automatically within minutes

Step 4 — Test

Visit your health endpoint: `` https://mcp.worldweatheronline.com/health ``

Test in MCP Inspector: `` https://mcp.worldweatheronline.com/mcp?key=YOUR_WWO_API_KEY ``

---

Connecting AI Clients

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json: ``json { "mcpServers": { "world-weather-online": { "url": "https://mcp.worldweatheronline.com/mcp?key=YOUR_API_KEY" } } } ``

Cursor / Windsurf

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

---

Available Tools

| Tool | Description | |------|-------------| | get_weather | Current conditions + 14-day forecast | | get_historical_weather | Past weather from 2008 onwards | | get_marine_weather | Swell, tides, water temperature | | get_ski_weather | Top/mid/base elevation forecasts | | search_location | Location autocomplete | | get_astronomy | Sunrise, sunset, moon phase | | get_timezone | Local time + UTC offset | | get_climate_averages | Monthly 12-year climate averages |

---

Local Development

npm install
npm run dev

Server runs at http://localhost:3000

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Maps & Location servers.