MCP Weather Forecast Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Weather Forecast Serverwhat's the weather in Tel Aviv?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Weather Forecast Server
A Model Context Protocol (MCP) server that enables LLMs to retrieve weather forecasts from Israeli websites using browser automation with Playwright. This project demonstrates how to build MCP tools that maintain state across sequential tool calls, allowing an LLM to control a browser interactively.
Project Overview
This project implements an MCP server using the official Anthropic MCP SDK in Python. It provides tools for:
Opening a browser and navigating to an Israeli weather forecast website
Entering city names into search fields
Selecting cities from autocomplete dropdowns
Extracting weather data from the loaded page
The key feature is the global state mechanism that persists browser and page instances across different tool calls, enabling sequential operations on the same browser page.
Related MCP server: Weather Israel MCP Server
Architecture
Components
host.py: Main chat host that manages MCP clients and orchestrates tool calls with Anthropic's Claude API
weather_Israel.py: MCP server implementing browser automation tools for Israeli weather forecasts
weather_USA.py: MCP server implementing API-based weather tools for USA weather data
client.py: MCP client implementation for connecting to MCP servers via stdio transport
Global State Management
The weather_Israel.py module uses a BrowserState class to maintain global browser and page instances:
playwright: The Playwright async contextbrowser: The Chromium browser instance (headless=False for visibility)page: The browser page for navigation and interaction
This state persists across tool calls, allowing sequential operations like:
Open browser → 2. Enter city → 3. Select city → 4. Extract data
Prerequisites
Python 3.13 or higher
uvpackage managerAnthropic API key (set in
.envfile)
Installation
Clone the repository and navigate to the project directory:
cd project-templateInstall dependencies using
uv:
uv syncInstall Playwright Chromium browser:
uv run playwright install chromiumSet up your environment variables:
# Edit .env and add your ANTHROPIC_API_KEYUsage
Running the MCP Server
Start the interactive chat host:
uv run host.pyThis will:
Connect to the configured MCP servers (weather_Israel.py and weather_USA.py)
Start an interactive chat loop
Allow you to ask questions that trigger tool calls
Example Questions
Once the host is running, you can ask questions like:
Israeli Weather:
"What is the weather in Jerusalem today?"
"Tell me the forecast for Tel Aviv"
"What's the current temperature in Haifa?"
USA Weather:
"Are there any weather alerts for California?"
"What's the forecast for New York City?"
"Get the weather forecast for latitude 37.7749, longitude -122.4194"
How It Works
When you ask a question, the system:
Sends your query to Claude via the Anthropic API
Claude determines which tools to call based on your question
The host executes the tools in sequence (e.g., open browser → enter city → select → extract)
Results are returned to Claude for final response generation
The answer is displayed in the chat
MCP Tools
weather_Israel.py Tools
open_weather_forecast_israel()
Launches a Chromium browser (headless=False) and navigates to https://www.weather2day.co.il/forecast.
enter_weather_forecast_city_israel(city: str)
Locates the search input field and types the given city name into it.
Parameter:
city- The name of the Israeli city (e.g., "Jerusalem", "Tel Aviv")
select_weather_forecast_city_israel()
Waits for the autocomplete dropdown to appear and clicks the first city in the list.
extract_weather_forecast_israel()
Extracts weather data from the loaded page, cleans up HTML and whitespace, and returns the text for LLM processing.
weather_USA.py Tools
get_alerts_in_USA(state: str)
Gets weather alerts for a USA state.
Parameter:
state- Two-letter USA state code (e.g., CA, NY)
get_forecast_in_USA(latitude: float, longitude: float)
Gets weather forecast for a location in USA.
Parameters:
latitude- Latitude of the locationlongitude- Longitude of the location
Development
Adding New MCP Servers
To add a new MCP server:
Create a new Python file (e.g.,
weather_Europe.py)Import FastMCP and create an instance:
from mcp.server.fastmcp import FastMCP
mcp = FastMCP("weather-Europe")Define tools using the
@mcp.tool()decorator:
@mcp.tool()
async def your_tool_name(param: str) -> str:
"""Tool description"""
# Your implementation
return resultAdd the main entry point:
def main():
mcp.run(transport="stdio")
if __name__ == "__main__":
main()Register the server in
host.pyby adding it to themcp_clientslist:
self.mcp_clients: list[MCPClient] = [
MCPClient("./weather_USA.py"),
MCPClient("./weather_Israel.py"),
MCPClient("./weather_Europe.py") # Add your new server
]Debugging
The browser runs in headless mode by default. Set
headless=FalseinBrowserState.ensure_browser()to see the browser actions.Check the console output for tool execution logs and error messages.
Use the
@mcp.tool()decorator's docstring to provide clear descriptions for the LLM.
Troubleshooting
Browser not launching: Ensure Playwright Chromium is installed with uv run playwright install chromium
Timeout errors: The website might be slow or loading differently. Adjust timeout values in the tool functions.
Selector not found: The website structure may have changed. Update the CSS selectors in the tool functions.
API errors: Verify your Anthropic API key is correctly set in the .env file.
License
This project is part of an academic project for learning MCP (Model Context Protocol) implementation.
Acknowledgments
Built with Anthropic MCP SDK
Powered by Anthropic Claude
Browser automation powered by Playwright
Dependency management with uv
Available Tools
4 toolsenter_weather_forecast_city_israelA
Locates the search input field and types the given city name into it.
Args: city: The name of the Israeli city to search for (e.g., "Jerusalem", "Tel Aviv")
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It explicitly discloses the main behavior: locating a field and typing a city name. While it does not cover edge cases like pre-existing text or missing fields, the action is simple and non-destructive, making the description reasonably transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: one sentence for the action and an Args block for the parameter. No unnecessary information, and the key verb is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter UI entry tool, this description is complete. It explains the core action and parameter. An output schema exists, so return values are not required. The scope is narrow, and the description provides enough context for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only defines 'city' as a string. The description adds meaningful context by specifying it's an Israeli city and gives examples (Jerusalem, Tel Aviv). This clarifies the expected value and compensates for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action: it locates the search input field and types the given city name. This specific verb+resource phrasing distinguishes it from siblings like open_weather_forecast_israel, select_weather_forecast_city_israel, and extract_weather_forecast_israel, which imply different stages of the workflow.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is used when a city name needs to be entered into a weather forecast search. However, it does not explicitly state when to use this tool versus alternatives (e.g., select_weather_forecast_city_israel) or mention any prerequisites or exclusions. This leaves room for the agent to infer the correct context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_weather_forecast_israelA
Extracts the current weather and forecast information from the loaded page.
This tool scrapes the weather data from the page, cleans up excessive whitespaces and HTML, and returns the text for the LLM to use in answering user questions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosure. It clearly states the tool scrapes data, cleans whitespaces and HTML, and returns text. This explains the transformation and output behavior, though it does not cover edge cases or error handling, which is acceptable for a read-only extraction tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no redundant information. The first sentence states the primary purpose, and the second explains the process and output. It is appropriately concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no annotations), the description fully explains what the tool does and what it returns. The existence of an output schema further reduces the need for detail, and the description is complete enough for an agent to understand when and how to use it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description adds no parameter-related information because there are none to describe, and the schema is complete with no properties.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool extracts current weather and forecast information from the loaded page, using the specific verb 'extracts' and identifying the resource. This distinguishes it from sibling tools that open, enter, or select data, as it focuses solely on extraction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool should be used after a page is loaded ('from the loaded page') and indicates the output is intended for the LLM to answer questions. It does not explicitly mention alternatives or exclusions, but the context is clear and sufficient for the tool's role in the workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
open_weather_forecast_israelA
Launches a Chromium browser and navigates to the Israeli weather forecast website.
This tool opens the browser (headless=False for visibility) and loads the forecast page.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses headless=False to make browser visible, which is useful behavioral context beyond the schema. However, with no annotations, it does not describe what the tool returns, whether it waits for page load, or any other side effects besides opening the browser.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short, front-loaded sentences clearly state the main action and an important implementation detail. No filler or redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter tool, the description adequately captures the core behavior. It lacks any mention of how this tool fits into the larger workflow with sibling tools (e.g., as a prerequisite for extraction), but given the output schema exists and no return value needs explanation, the gap is moderate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so schema coverage is trivially 100% and no parameter description is needed. Baseline 4 applies because there is nothing extra to document.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it launches a Chromium browser and navigates to a specific weather forecast website. The action is distinct from sibling tools that handle entering, selecting, or extracting weather data, so it is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool relative to siblings. It does not mention that it should be the initial step before using enter/select/extract tools, nor does it provide any prerequisites or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
select_weather_forecast_city_israelA
Waits for the autocomplete dropdown to appear and clicks the first city in the list.
This tool should be called after entering a city name to select it from the dropdown.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses key behavioral traits: it waits for the dropdown to appear and clicks the first city. This is transparent about the operation and its asynchronous nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary action, and every sentence contributes essential information. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete for a zero-parameter tool: it explains the purpose, timing, and expected behavior. It could mention the specific sibling tools by name, but the phrase 'after entering a city name' sufficiently hints at the workflow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the description appropriately explains the context rather than parameter details. Per rubric, 0 params baseline is 4, and the description adds value by clarifying when to invoke it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action: waiting for the autocomplete dropdown and clicking the first city. It specifies the resource (city selection) and the verb (click), making it distinct from siblings like enter_weather_forecast_city_israel.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'This tool should be called after entering a city name,' which provides clear when-to-use guidance. It does not name alternatives or exclusions, so it misses a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v0.1.0- First observed
enter_weather_forecast_city_israel - First observed
extract_weather_forecast_israel - First observed
open_weather_forecast_israel - First observed
select_weather_forecast_city_israel
TDQS
Scored across 4 tools
Each tool serves a distinct stage of a linear workflow: opening the site, entering a city, selecting from autocomplete, and extracting data. There is no overlap in purpose, and the descriptions clearly delineate when each should be used.
All tool names follow the same verb_noun pattern (open_, enter_, select_, extract_) with a consistent 'weather_forecast_israel' suffix. This makes the sequence and intent of each tool predictable and uniform.
Four tools is ideal for this focused browser automation workflow. Each tool maps to a necessary step in the process, with no redundant or missing steps for the stated purpose.
The tools cover the full lifecycle from opening the forecast page to extracting the desired weather data. There are no obvious gaps that would prevent an agent from successfully retrieving a forecast for any Israeli city.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Get current weather for any city and create images from your prompts. Streamline planning, reports…
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
US weather & geo for AI agents: forecasts, alerts, earthquakes, elevation, geocoding. No keys.
US weather & geo for AI agents: forecasts, alerts, earthquakes, elevation, geocoding. No keys.
Related MCP Servers
- FlicenseAqualityCmaintenanceEnables users to query weather information for Israel via Playwright browser automation and for the USA via a weather API, allowing an LLM to access real-time weather data and alerts.4-
- FlicenseBqualityCmaintenanceEnables users to query weather forecasts for Israeli cities through natural language using browser automation and Gemini.4-
- FlicenseAqualityBmaintenanceEnables LLMs to fetch Israeli weather forecasts by controlling a real browser via Playwright, simulating human interactions like typing and clicking on a weather website.4-
- FlicenseAqualityCmaintenanceEnables LLMs to fetch Israeli weather forecasts by automating a browser to navigate Weather2Day, providing tools for city search and content extraction.4-