MCP Playwright Weather Israel
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GEMINI_MODEL | No | Model to use for Gemini | gemini-3.1-flash-lite |
| GEMINI_API_KEY | Yes | Required. Your Gemini API key from https://aistudio.google.com/apikey | |
| MAX_TOOL_ROUNDS | No | Maximum tool call rounds | 10 |
| WEATHER_HEADLESS | No | Whether to run browser headless | false |
| GEMINI_TEMPERATURE | No | Temperature for Gemini model | 0.2 |
| WEATHER_SLOW_MO_MS | No | Slow motion delay for browser | 0 |
| WEATHER_TIMEOUT_MS | No | Timeout for browser navigation and selectors | 45000 |
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 | Open a browser and navigate to the Israeli weather forecast site. Call this first. It leaves the browser sitting on the forecast page with the city search box ready. Returns the page title and URL. |
| enter_weather_forecast_city_israelA | Type an Israeli city name into the forecast search box. |
| select_weather_forecast_city_israelA | Click a city from the autocomplete list and load its forecast page. |
| extract_weather_forecast_israelA | Read the forecast off the page that is currently open, as clean markdown. |
| close_weather_browser_israelA | Close the browser opened by these tools. Safe to call at any time. |
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 5 tools
Each tool maps to a distinct step in the weather forecast workflow: open, enter city, select suggestion, extract data, close browser. There is no meaningful overlap between actions, and the descriptions reinforce the intended sequence.
All tool names follow the same verb_weather_[object]_israel pattern: open_weather_forecast_israel, enter_weather_forecast_city_israel, extract_weather_forecast_israel, etc. The naming is highly predictable and consistent.
Five tools is well-scoped for a focused Playwright weather browsing server. Each tool covers a necessary stage in the interaction without redundant or extraneous operations.
The set covers the full workflow: open the site, search a city, handle autocomplete ambiguity, extract forecast data, and close the browser. There are no obvious dead ends or missing steps for the stated purpose.