Skip to main content
Glama

šŸ‡®šŸ‡± Israeli Weather MCP with Playwright

šŸ“Œ Overview

This project implements an MCP (Model Context Protocol) Server that allows an LLM to retrieve Israeli weather forecasts using Playwright browser automation.

Instead of using a weather API, the MCP opens the Weather2day website in a real browser, searches for the requested city, selects it, extracts the weather information from the page, and provides the extracted content back to the LLM.

The project demonstrates how MCP + Playwright + LLM can work together to give an AI agent browser-based capabilities.


Related MCP server: MCP-with-Playwright

šŸŽÆ Project Goals

The project was developed to practice:

  • Building an MCP Server independently.

  • Creating custom MCP Tools.

  • Using Playwright for browser automation.

  • Allowing an LLM to control a browser through MCP Tools.

  • Extracting and cleaning web page content.

  • Providing extracted page content back to the LLM so it can answer the user's question.


šŸ› ļø Technologies

  • Python

  • MCP SDK / FastMCP

  • Playwright

  • uv

  • Weather2day

  • LLM


🧩 How It Works

The user asks the LLM for the weather in an Israeli city.

The LLM then uses the MCP Tools in the following order:

User
  ↓
LLM
  ↓
open_weather_forecast_israel
  ↓
enter_weather_forecast_city_israel
  ↓
select_weather_forecast_city_israel
  ↓
get_weather_forecast_content_israel
  ↓
Playwright extracts the page content
  ↓
Content is cleaned and returned to the LLM
  ↓
LLM answers the user

šŸ”§ MCP Tools

1. open_weather_forecast_israel

Opens the Weather2day Israeli forecast page using Playwright.

https://www.weather2day.co.il/forecast

2. enter_weather_forecast_city_israel

Receives a city name and enters it into the Weather2day search field.

Example:

city = "בני ברק"

The Tool also waits for the city's autocomplete suggestions.


3. select_weather_forecast_city_israel

Selects the requested city from the visible autocomplete suggestions.

This completes the browser interaction required to reach the city's forecast page.


4. get_weather_forecast_content_israel

Extracts the visible content from the currently selected city's page.

The Tool:

  1. Reads the page content using Playwright.

  2. Removes empty lines.

  3. Removes duplicate lines.

  4. Limits the returned content size.

  5. Returns the cleaned information to the LLM.

This Tool implements the second stage of the project, where the LLM receives information extracted from the web page and uses it to formulate the final answer.


šŸ“‚ Project Structure

mcp/
ā”œā”€ā”€ host.py
ā”œā”€ā”€ client.py
ā”œā”€ā”€ weather_Israel.py
ā”œā”€ā”€ pyproject.toml
└── README.md

weather_Israel.py

Contains the Israeli Weather MCP Server and its Playwright-based Tools.

host.py

Runs the terminal chat and connects the LLM to the MCP Tools.

client.py

Provides the MCP client functionality.


šŸš€ Installation

1. Install dependencies

From the project directory:

uv sync

2. Install the Playwright Chromium browser

uv run playwright install chromium

ā–¶ļø Running the Project

Start the Host:

uv run host.py

You should see:

Israeli Weather MCP is ready.
Type 'exit' to quit.

You can then ask questions about Israeli cities.


šŸ’¬ Example

User

give me the weather in Bne Brak

MCP Tool calls

[CITY] Using city: בני ברק
[MCP] Calling open_weather_forecast_israel({})
[MCP] Calling enter_weather_forecast_city_israel({'city': 'בני ברק'})
[MCP] Calling select_weather_forecast_city_israel({})
[MCP] Calling get_weather_forecast_content_israel({})

Assistant

Current temperature in Bne Brak: 25°C.
Wind speed: 5 km/h from the southwest.
Humidity: 87%.
Last updated: 07:00.

The final answer is generated by the LLM using the weather information extracted from the browser page.


šŸ’” Example Questions

The Agent can answer questions such as:

What is the weather in Jerusalem?
Give me the weather in Bne Brak.
What's the current temperature in Tel Aviv?
What is the humidity in Haifa?

🌐 Data Source

Weather information is retrieved from:

Weather2day – Israeli Weather Forecast

https://www.weather2day.co.il/forecast

The project intentionally uses browser automation with Playwright instead of a dedicated weather API.


šŸ¤– Why Playwright?

Playwright allows the MCP Server to interact with a real browser programmatically.

In this project, Playwright is responsible for:

  • Opening the website.

  • Entering the city.

  • Finding the city suggestion.

  • Clicking the city.

  • Reading the resulting forecast page.

This allows the LLM to interact with a website through MCP Tools without requiring manual browser interaction.


🧠 MCP + Browser Automation

This project demonstrates how MCP can extend an LLM with capabilities beyond generating text.

The LLM decides which Tool to call, while the MCP Server handles the actual browser interaction.

This creates a simple architecture where:

LLM = decides what needs to be done
        ↓
MCP = provides the available Tools
        ↓
Playwright = performs the browser actions
        ↓
Weather2day = provides the weather data
        ↓
LLM = interprets the data and answers

šŸ“š Learning Outcomes

Through this project I practiced:

  • Creating an MCP Server with FastMCP.

  • Defining MCP Tools using decorators.

  • Connecting an LLM to custom MCP Tools.

  • Automating browser interactions with Playwright.

  • Handling dynamic web pages and autocomplete suggestions.

  • Extracting and cleaning web page content.

  • Returning web content to an LLM for further reasoning.


šŸ‘©ā€šŸ’» Project

Built as part of an MCP + Playwright learning project focused on giving LLMs browser automation capabilities.

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • MCP server for AI dialogue using various LLM models via AceDataCloud

  • A Model Context Protocol server for Wix AI tools

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ahuva-git/mcp-project'

If you have feedback or need assistance with the MCP directory API, please join our Discord server