Skip to main content
Glama
osnat-2
by osnat-2

MCP Weather Forecast Project

๐Ÿ“‹ Project Overview

This project demonstrates a complete Model Context Protocol (MCP) Server implementation with Playwright-based browser automation. It enables Claude AI to fetch real-time weather forecasts from Israeli and USA weather websites by automating browser interactions without manual intervention.

The project implements two MCP servers:

  1. weather_USA.py - Fetches USA weather alerts and forecasts from the National Weather Service API

  2. weather_Israel.py - Automates browser interactions with the Israel Weather 2 Day website using Playwright

Related MCP server: Weather MCP Server

๐ŸŽฏ Learning Objectives

By working through this project, you will understand:

  • โœ… How to implement your own MCP Server for custom needs

  • โœ… How to use Playwright to add browser control capabilities to LLMs

  • โœ… How to manage browser automation sessions across multiple tool calls

  • โœ… How to create an orchestrator that manages multiple MCP clients

  • โœ… How to integrate Claude AI with custom tools

๐Ÿ› ๏ธ Technology Stack

  • MCP SDK: Anthropic's official library for exposing tools to LLMs

  • Playwright: Microsoft's browser automation library for reliable browser control

  • FastMCP: Decorator-based framework for building MCP servers quickly

  • Cohere API: Cohere's advanced LLM for intelligent tool selection and execution

  • Python 3.13+: Async-first Python implementation

๐Ÿ“ฆ Installation

Prerequisites

  • Python 3.13 or higher

  • Pip or Uv package manager

Setup Steps

  1. Clone or navigate to the project directory:

cd MCPProject
  1. Install dependencies:

uv sync

Or with pip:

pip install -r requirements.txt
  1. Set up environment variables: Create a .env file in the project root:

COHERE_API_KEY=your-cohere-api-key-here

You can get a Cohere API key from cohere.com

  1. Install Playwright browsers:

playwright install

๐Ÿš€ How to Run

Running the Interactive Chat Host

uv run host.py

The host will:

  1. Connect to both MCP servers (USA and Israel weather)

  2. Display available tools

  3. Start an interactive chat loop

  4. Allow you to ask questions about weather forecasts

Type your weather-related questions and press Enter. Type quit to exit.

๐Ÿ’ฌ Example Questions and Answers

For USA Weather:

Query: What are the active weather alerts in California?
[System connects to weather_USA MCP and calls get_alerts_in_USA tool]
Response: [Weather alerts for California displayed]
Query: What's the forecast for latitude 40.7128 and longitude -74.0060 (New York)?
[System calls get_forecast_in_USA tool with coordinates]
Response: [5-day forecast for NYC]

For Israel Weather:

Query: Tell me the weather forecast for Tel Aviv
[System performs the following steps]
1. Opens browser with open_weather_forecast_israel()
2. Enters "Tel Aviv" with enter_weather_forecast_city_israel("Tel Aviv")
3. Selects first city option with select_weather_forecast_city_israel()
4. Extracts forecast with extract_weather_forecast_israel()
Response: [Current weather and forecast for Tel Aviv]
Query: What's the weather like in Jerusalem?
[Same process as above, but for Jerusalem]
Response: [Weather forecast for Jerusalem]

๐Ÿ“ Architecture

System Components

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                 host.py (ChatHost)                       โ”‚
โ”‚  - Orchestrates multiple MCP clients                     โ”‚
โ”‚  - Manages tool discovery and execution                  โ”‚
โ”‚  - Handles Claude AI interaction                         โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚                                          โ”‚
         โ–ผ                                          โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”              โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  weather_USA.py      โ”‚              โ”‚  weather_Israel.py   โ”‚
โ”‚  (MCP Server)        โ”‚              โ”‚  (MCP Server)        โ”‚
โ”‚                      โ”‚              โ”‚                      โ”‚
โ”‚ Tools:               โ”‚              โ”‚ Tools:               โ”‚
โ”‚ โ€ข get_alerts_in_USA  โ”‚              โ”‚ โ€ข open_browser       โ”‚
โ”‚ โ€ข get_forecast_USA   โ”‚              โ”‚ โ€ข enter_city         โ”‚
โ”‚                      โ”‚              โ”‚ โ€ข select_city        โ”‚
โ”‚                      โ”‚              โ”‚ โ€ข extract_forecast   โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜              โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚                                          โ”‚
         โ–ผ                                          โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”              โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ NWS API              โ”‚              โ”‚ Chromium Browser     โ”‚
โ”‚ (weather.gov)        โ”‚              โ”‚ (Playwright)         โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜              โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Tool Execution Flow

  1. User Query โ†’ ChatHost

  2. Tool Discovery โ†’ List available tools from all MCP servers

  3. Cohere Analysis โ†’ Cohere AI determines which tools to use

  4. Tool Execution โ†’ Execute tools in sequence with results

  5. Response Loop โ†’ If more tools needed, repeat; otherwise return final answer

๐Ÿ”ง Implementation Details

weather_USA.py - API-Based Approach

  • Uses the National Weather Service API

  • No browser automation needed

  • Direct HTTP requests to fetch structured data

  • Tools:

    • get_alerts_in_USA(state) - Fetches active alerts for a US state

    • get_forecast_in_USA(latitude, longitude) - Gets 5-day forecast for coordinates

weather_Israel.py - Browser Automation Approach

  • Uses Playwright for browser control

  • Automates the weather2day.co.il website

  • Maintains browser session across tool calls

  • Tools:

    • open_weather_forecast_israel() - Opens browser and navigates to website

    • enter_weather_forecast_city_israel(city_name) - Types city name in search field

    • select_weather_forecast_city_israel() - Clicks first matching city from dropdown

    • extract_weather_forecast_israel() - Extracts and cleans forecast data from page

Key Implementation Features

Browser Session Management:

# Global browser/page instances to keep browser open
_browser: Browser | None = None
_page: Page | None = None

async def ensure_browser_initialized():
    """Initialize browser if not already done"""
    # Browser persists across tool calls

Tool Definition with FastMCP:

@mcp.tool()
async def tool_name(param1: str) -> str:
    """Tool description for Claude"""
    # Implementation

MCP Client Integration:

  • Each MCP server runs as a subprocess

  • Host communicates via stdio (MCP protocol)

  • Tools are prefixed with server name to avoid conflicts

๐Ÿ“ Project Structure

MCPProject/
โ”œโ”€โ”€ host.py                 # Main orchestrator
โ”œโ”€โ”€ client.py              # MCP client implementation
โ”œโ”€โ”€ weather_USA.py         # USA weather MCP server
โ”œโ”€โ”€ weather_Israel.py      # Israel weather MCP server
โ”œโ”€โ”€ pyproject.toml         # Project dependencies
โ”œโ”€โ”€ python-version.txt     # Required Python version
โ””โ”€โ”€ README.md             # This file

๐Ÿ” Understanding MCP Tools

Tool Definition

Each tool is a Python async function decorated with @mcp.tool():

@mcp.tool()
async def my_tool(param: str) -> str:
    """
    Detailed description of what the tool does.
    This docstring is sent to Cohere to help it understand when to use this tool.
    
    Args:
        param: Parameter description
    
    Returns:
        str: Description of return value
    """
    # Implementation
    return result

Tool Discovery

When the host connects to an MCP server, it:

  1. Sends a list_tools() request

  2. Receives tool metadata (name, description, input schema)

  3. Registers tools with namespace: {server_name}__{tool_name}

  4. Sends full tool list to Claude

Tool Execution

When Cohere calls a tool:

  1. Host receives the tool name and arguments

  2. Maps to original tool name and MCP client

  3. Calls the tool on the specific MCP server

  4. Receives result and provides to Cohere

  5. Cohere uses result for next reasoning step

๐Ÿงช Testing Individual Tools

You can test tools directly in Python:

import asyncio
from weather_Israel import open_weather_forecast_israel, enter_weather_forecast_city_israel

async def test():
    result1 = await open_weather_forecast_israel()
    print(result1)
    
    result2 = await enter_weather_forecast_city_israel("Tel Aviv")
    print(result2)

asyncio.run(test())

๐Ÿ› Troubleshooting

Browser Not Opening

  • Ensure Playwright browsers are installed: playwright install

  • Check if Chromium is blocked by antivirus

  • Try adding headless=True to browser launch for background mode

Tool Not Found

  • Ensure both weather_*.py files are in the same directory

  • Check that MCP servers are starting successfully (look for "Connected to server with tools" messages)

  • Verify tool names match exactly

Timeout Issues

  • Increase the timeout in Playwright selectors

  • Check if the website structure has changed

  • Add wait conditions for specific elements

SSL/Certificate Issues

The code handles Netfree networks with SSL verification disabled. For production, remove verify=False from httpx configuration.

๐ŸŽ“ Extension Ideas

  1. Add more weather sources - Create additional MCP servers for different weather APIs

  2. Caching layer - Store forecast data to avoid repeated browser automation

  3. Notification system - Alert when severe weather is forecasted

  4. Multi-language support - Handle queries in Hebrew and English

  5. Historical data - Compare current forecast with historical weather patterns

  6. GUI Dashboard - Create a web interface showing forecasts from all sources

๐Ÿ“š Resources

๐Ÿค Contributing

To add new weather sources:

  1. Create a new weather_*.py file with MCP server implementation

  2. Add MCPClient entry in host.py

  3. Test with sample queries

  4. Document tools in README

๐Ÿ“„ License

This project is for educational purposes.


Happy weather forecasting! ๐ŸŒค๏ธ

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

  • OpenWeather MCP โ€” wraps the OpenWeatherMap API (openweathermap.org)

  • Open-Meteo MCP โ€” weather forecast + historical reanalysis + sister APIs

  • WeatherAPI.com MCP โ€” wraps WeatherAPI.com (api.weatherapi.com)

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/osnat-2/MalkaBruk-MCPProject'

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