1. Conduid
  2. Developer Tools
  3. Weather Tools Server
MCP server · Developer Tools

Weather Tools Server

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.

Unclaimed last commit 9 months ago devtools
43Fair

Scored 4 months ago · breakdown

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

Install
npx mcp-weather-tools-server

This 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

I know everything about Weather Tools Server. Ask me about installation, configuration, usage, or troubleshooting.

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.

Questions

About Weather Tools Server

How do I install Weather Tools Server?

Run npx mcp-weather-tools-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Weather Tools Server safe to use with an AI agent?

Its trust score is 43 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Weather Tools Server still maintained?

The last commit was 9 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.