Yandex Weather
FreeNot checkedAccess Yandex Weather SmartHome API for current conditions, daily forecasts, and hourly weather data by geographic coordinates.
About
Access Yandex Weather SmartHome API for current conditions, daily forecasts, and hourly weather data by geographic coordinates.
README
Model Context Protocol server that provides weather data from Yandex Weather SmartHome API to AI agents (Claude Desktop, Hermes, Cursor, etc.).
Features
- Current weather — temperature, feels-like, wind speed, condition, icon
- Daily forecast — up to 2 days (free tier) with night/morning/day/evening parts
- Hourly forecast — temperature, feels-like, wind speed, condition per hour
- SmartHome native — designed specifically for the Yandex Pogoda B2B SmartHome tariff
Getting an API key
- Go to Yandex Pogoda SmartHome Console
- Register (phone number + accept terms)
- Copy your API key from the dashboard
SmartHome limitations
| Tier | Forecast days | Parameters | Rate |
|---|---|---|---|
| Free | today + tomorrow | temp, feels_like, wind_speed, condition, icon | limited (see agreement) |
| Commercial | depends on plan | extended (humidity, pressure, uv, etc.) | extended |
See the user agreement for details.
Quick start
git clone https://github.com/ivanscm/mcp-yandex-weather.git
cd mcp-yandex-weather
# Create .env with your API key
cp .env.example .env
# Run (stdio mode — for Claude Desktop, Cursor)
uv run server.py
# Or run in HTTP mode for remote access
uv run server.py --http
Configuration examples
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"ya-pogoda": {
"command": "uv",
"args": ["run", "--directory", "/path/to/mcp-yandex-weather", "server.py"],
"env": {
"YANDEX_WEATHER_API_KEY": "your_key_here"
}
}
}
}
Hermes Agent
Add to ~/.hermes/config.yaml:
mcp_servers:
ya-pogoda:
command: uv
args:
- run
- "--directory"
- "/path/to/mcp-yandex-weather"
- server.py
env:
YANDEX_WEATHER_API_KEY: "your_key_here"
enabled: true
For remote Hermes (NAS), run locally with HTTP:
uv run server.py --http
Then configure Hermes:
mcp_servers:
ya-pogoda:
url: "http://192.168.1.100:8000/mcp"
enabled: true
Cursor
Settings → MCP → Add server:
{
"mcpServers": {
"ya-pogoda": {
"command": "uv",
"args": ["run", "--directory", "/path/to/mcp-yandex-weather", "server.py"],
"env": {
"YANDEX_WEATHER_API_KEY": "your_key_here"
}
}
}
}
MCP Inspector
npx @modelcontextprotocol/inspector uv run server.py
Tools
| Tool | Parameters | Returns |
|---|---|---|
get_current_weather |
lat, lon, lang (default: ru_RU) |
temperature, feels_like, wind_speed, condition, icon |
get_forecast |
lat, lon, limit (default: 2), lang |
daily forecast with parts (night/morning/day/evening) |
get_hourly_forecast |
lat, lon, limit (default: 2), lang |
hourly forecast array |
Resources
weather://current/{lat}/{lon}— current weather as JSON
Prompts
weather_report(lat, lon, lang)— template for generating a weather report
Development
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run tests with verbose
pytest -v
License
MIT
Installing Yandex Weather
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/ivanscm/mcp-yandex-weatherFAQ
Is Yandex Weather MCP free?
Yes, Yandex Weather MCP is free — one-click install via Unyly at no cost.
Does Yandex Weather need an API key?
No, Yandex Weather runs without API keys or environment variables.
Is Yandex Weather hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Yandex Weather in Claude Desktop, Claude Code or Cursor?
Open Yandex Weather on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Yandex Weather with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
