weather-chat-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENAI_API_KEY | Yes | Your OpenAI API key |
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 | פותח דפדפן Chromium ומנווט לאתר מזג האויר הישראלי. יש לקרוא לפונקציה זו ראשונה לפני כל פעולה אחרת. |
| enter_weather_forecast_city_israelA | מזין שם עיר בשדה החיפוש שבדף מזג האויר. יש לקרוא לפונקציה open_weather_forecast_israel לפני שימוש בפונקציה זו. Args: city: שם העיר לחיפוש (לדוגמה: 'תל אביב', 'ירושלים') |
| select_weather_forecast_city_israelA | בוחרת את הפריט הראשון ברשימת הערים שהופיעה לאחר ההקלדה. יש לקרוא תחילה ל-enter_weather_forecast_city_israel. |
| get_forecast_content_israelA | מחלצת את תוכן התחזית מהדף הטעון לאחר בחירת עיר. יש לקרוא לפונקציה זו רק לאחר בחירת העיר ב-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 clearly distinct role in a sequential workflow: open browser, enter city, select from list, extract forecast. No overlap in purpose.
Names follow a consistent pattern of verb_noun_location (e.g., open_weather_forecast_israel), though they are quite verbose. Slight inconsistency in 'enter_weather_forecast_city_israel' vs 'select_weather_forecast_city_israel' but still readable.
Four tools is well-scoped for a focused weather forecast retrieval task. No unnecessary bloat.
Covers the essential steps to retrieve a forecast from a specific Israeli weather site. Missing generic options like city validation or error recovery, but sufficient for the intended workflow.