weather-chat-mcp

weather-chat-mcp

Enables LLMs to fetch Israeli weather forecasts by controlling a real browser via Playwright, simulating human interactions like typing and clicking on a weather website.

Category
Visit Server

README

šŸŒ¦ļø Weather Israel MCP Server (Playwright)

The MCP that puts the LLM's hand on the mouse.
Weather forecasts Made in Israel — not through a boring API, but the Israeli way: open a browser, poke your nose into the site, type, click... and get a forecast.


šŸŽÆ What is this project?

In the classic Weather MCP example, the LLM pulls weather data through a US API. Nice, but... who really cares about a forecast somewhere in the USA when you need the current temperature in Tel Aviv or Jerusalem?

This project builds an Israeli MCP Server that gives the LLM a completely human ability: to control a real browser. Instead of calling an API, the Agent:

  1. Opens a real Chromium browser (in headless=False mode, so you can watch it live!).
  2. Types a city name into the search field of weather2day.co.il.
  3. Picks the city from the autocomplete dropdown dynamically.
  4. Scrapes the page content, cleans it, and feeds it back to the LLM so it can answer on its own (Retrieval-Augmented Generation / RAG).

The big idea: Everything a human user does with two hands — the LLM learns to do with four Tools.


🧠 What you'll learn

  • Build your own MCP Server for any purpose or targeted website.
  • Expose Python functions as Tools for an LLM using the FastMCP decorator.
  • Use Playwright to give an LLM physical control over a browser (mouse & keyboard simulation).
  • Build RAG (Retrieval-Augmented Generation): Stream live, freshly-scraped page content directly into the model's context.
  • Sync & Stability: Handle dynamic web element loading and prevent flakiness in browser automation.

šŸ“‚ Project Structure

project-template/ ā”œā”€ā”€ weather_Israel.py # MCP Server — Israel forecast via Playwright ā”œā”€ā”€ host.py # Terminal chat — connects the LLM to the MCP server ā”œā”€ā”€ client.py # Generic MCP Client (stdio communication) ā”œā”€ā”€ pyproject.toml # Project dependencies and metadata (uv) └── .env # Environment variables (OpenAI API key)


šŸ› ļø Technologies Used

  • Python 3.13+
  • FastMCP (MCP SDK) - Anthropic's official framework for building Model Context Protocol servers easily.
  • Playwright (Python Async API) - Advanced browser automation and control library.
  • OpenAI API - The brain of the Agent (powered by gpt-4o-mini), deciding which tools to call and interpreting the results.

🧩 The Four Tools of the Israeli MCP

The manual steps a human performs on the website are broken down into 4 modular tools that the LLM calls sequentially:

Tool What it does Human equivalent
open_weather_forecast_israel Launches Chromium in non-headless mode and navigates to the forecast site. Open a browser and go to the site.
enter_weather_forecast_city_israel(city) Finds the search field, clears it, and types the city name char-by-char to trigger autocomplete. Click the search bar and type the city name.
select_weather_forecast_city_israel Detects the dropdown list, clicks the first auto-complete suggestion, and waits for the city page to load. Click on the correct city from the suggestions.
get_forecast_content_israel Scrapes the loaded page, cleans up redundant spaces and empty lines, and feeds it back to the LLM. Read the forecast details on the screen.

Why not just search Google?
Running a Google search through automated browsers quickly triggers CAPTCHA challenges. By guiding the Agent through a direct, targeted flow on a specific website, we bypass bot detection completely and guarantee a seamless run.


šŸ›”ļø Loop Protection (מנגנון ×ž× ×™×¢×Ŗ ×œ×•×œ××•×Ŗ)

During development, we identified that LLMs can sometimes get stuck in an infinite loop, calling the same tool repeatedly (such as trying to open the browser over and over).

To prevent this, we implemented a strict Loop Protection Mechanism inside host.py:

  • The host keeps track of all executed tools within the current turn.
  • If the LLM tries to invoke the same tool more than once per turn, the call is blocked and a system message is returned: "This action has already been completed in this turn. Please proceed to the next step."
  • This forces the LLM to progress linearly: Open āž” Type āž” Select āž” Scrape.

šŸš€ Setup & Run (שלב אחר שלב)

This project is managed using uv for ultra-fast dependency management.

  1. Install dependencies and set up the environment: Command: uv sync

  2. Install the Chromium browser for Playwright: Command: uv run playwright install chromium

  3. Configure your API key: Create a .env file in the project root and add your OpenAI API key: OPENAI_API_KEY=your_actual_api_key_here (The .env file is already listed in .gitignore to ensure your secret key is never pushed to public repositories).

  4. Start the Chat Agent: Command: uv run host.py

    Type your query in the terminal, press Enter, and watch the browser open and perform the actions on its own! To exit, simply type "quit".


šŸ’¬ Example Questions to Try

The Agent will analyze your request and trigger the correct sequence of tools automatically. Try asking:

  • "מה מזג האוויר ×‘×™×Ø×•×©×œ×™× היום?" (What's the weather in Jerusalem today?)
  • "Check the temperature in Tel Aviv for the upcoming days"
  • "האם צפוי ×œ×Ø×“×Ŗ גשם בחיפה ×ž×—×Ø? מה אחוזי ×”×œ×—×•×Ŗ?"

šŸ’­ A Closing Thought

Playwright was born long before the GenAI era — originally designed as a testing automation tool for developers. But with the rise of AI Agents, it has taken center stage. Suddenly, giving an LLM "hands and a mouse" to interact with the real web has become the ultimate way to bridge the gap between static knowledge and real-world actions.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured