Weather MCP - Israel Edition
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ANTHROPIC_API_KEY | Yes | API key for Anthropic Claude, required for host.py to function. | |
| PLAYWRIGHT_HEADLESS | No | Set to 'true' to run the browser in headless mode (no visible window). Useful for servers without a display. | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| open_weather_forecast_israelA | פותחת דפדפן חדש ומנווטת לדף התחזית של אתר weather2day.co.il. יש להריץ כלי זה תמיד ראשון, לפני הזנת עיר או בחירתה. |
| enter_weather_forecast_city_israelA | מזינה שם עיר בשדה החיפוש שבדף התחזית, כך שרשימת ערים מתאימות תיפתח. יש להריץ לאחר open_weather_forecast_israel. Args: city: שם העיר לחיפוש בעברית (למשל: "תל אביב", "חיפה", "באר שבע") |
| select_weather_forecast_city_israelA | בוחרת את הפריט הראשון מתוך רשימת הערים הנפתחת (autocomplete) שמופיעה לאחר הזנת שם עיר, וממתינה לטעינת דף התחזית של אותה עיר. יש להריץ לאחר enter_weather_forecast_city_israel. |
| get_weather_forecast_content_israelA | שולפת ומנקה את תוכן הטקסט של דף התחזית הפתוח כרגע בדפדפן, כדי לספק ל-LLM את המידע הדרוש לענות על שאלות לגבי התחזית ישירות בשיחה (RAG). יש להריץ לאחר select_weather_forecast_city_israel. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a discrete role in a linear workflow: opening the forecast page, entering a city, selecting an autocomplete result, and extracting content. The Hebrew descriptions clearly state required predecessors, so an agent should not confuse entering a city with selecting it.
All tool names follow a consistent snake_case convention with a verb, the weather_forecast domain, and the israel suffix. The shared prefix and country suffix make the set coherent, while the varying object nouns still align with each tool's distinct action.
Four tools is exactly right for the narrow browser automation workflow; each step is necessary and none is redundant. The count fits comfortably within the ideal 3–15 range for a focused MCP server.
The full workflow from opening the site to extracting forecast content is covered, including city search and selection. A close/reset tool or broader city-selection capabilities would be nice but are not essential for the stated purpose.