Weather Israel MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 | פתיחת האתר וניווט לדף התחזית. |
| enter_weather_forecast_city_israelC | הזנת שם העיר בשדה החיפוש. |
| select_weather_forecast_city_israelB | בחירת העיר מהרשימה הנפתחת. |
| extract_weather_data_from_pageA | מחלץ את תוכן הטקסט מהדף הנוכחי כדי שה-LLM יוכל לקרוא את התחזית. זהו שלב ה-RAG שמספק קונטקסט למודל. |
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 maps to a distinct browser step: opening, typing a city, selecting from a dropdown, and extracting page text. The two city-related tools could be confused at first glance, but the descriptions clarify typing vs. selecting.
All names are snake_case and verb-first, with most sharing the 'weather_forecast' prefix. 'extract_weather_data_from_page' breaks the pattern slightly, and the first tool omits 'city', but the overall convention is still predictable.
Four tools is a reasonable number for a tightly scoped browser automation flow. Each tool serves a necessary step in the workflow, though the set is on the smaller side.
The tools cover the full workflow from opening the site to extracting weather forecast text. Minor gaps like explicit wait/retry or error-handling steps are missing, but the core retrieval process is complete.