About Weather Tools Server
Weather Tools Server is an MCP server published by Ana-Gutman in the Developer Tools category: mCP (Model Context Protocol) server exposing weather-related tools that can be consumed by LLM clients (e.g., Claude Desktop). Implements a modular provider system, structured tool definitions, and a Python-based server that returns structured responses for agent workflows. It has been installed 0 times through Conduid.
Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcp-weather-tools-serverThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Weather Tools Server
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
MCP Weather Tools – LLM Tool Calling Demo
This project implements an MCP (Model Context Protocol) Server and Host that enable an LLM client (such as Claude Desktop) to call a structured tool (get_weather) to retrieve real-time weather information from the Open-Meteo API.
It demonstrates practical experience with:
- MCP Server/Client communication
- Tool schemas and structured LLM responses
- Python-based service orchestration
- Real-time API integration
- LLM-driven agent workflows
- GUI integration using Tkinter
📦 Project Structure
mcp-clima/
│
├── server/
│ ├── server.py # MCP Server: registers tools and handles requests
│ ├── providers.py # Weather provider logic (Open-Meteo)
│ ├── requirements.txt
│
└── host/
├── host_gui.py # Tkinter GUI acting as an MCP Host (Client)
🚀 Running the MCP Server
cd server
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python server.py
When started successfully, the console will show:
[MCP-Server] listening on 127.0.0.1:8787
🖥 Running the GUI Host
cd host
python -m venv .venv
source .venv/bin/activate
python host_gui.py
The GUI allows you to:
- Connect to the MCP server
- Enter a city (e.g., "Montevideo")
- Fetch real-time weather data
- Enable auto-refresh to retrieve updates periodically
README mirrored from the source repository 4 months ago. The original is authoritative.