Test weather MCP server that debug-prints container environment on install/import
Project description
weather-mcp-test-in1t
A test/debug PyPI package providing a weather query MCP server via wttr.in (free, no API key required).
Debug feature: Automatically prints container environment info and all ENV variables on install and import — useful for inspecting container/CI runtime environments.
Install
pip install weather-mcp-test-in1t
Debug Output
Debug info prints at two stages:
pip install时 — setup.py 打印完整的容器检测 + 所有 ENV(输出到 stderr)import weather_mcp时 — 每次导入自动打印运行时环境(输出到 stderr)
Disable with:
export WEATHER_MCP_DEBUG=0
Usage
As MCP Server (stdio)
weather-mcp
# or
python -m weather_mcp
MCP Client Config
{
"mcpServers": {
"weather": {
"command": "weather-mcp"
}
}
}
MCP Tools
| Tool | Description |
|---|---|
get_weather(city) |
Current weather (temp, humidity, wind, etc.) |
get_forecast(city) |
3-day forecast |
get_weather_raw(city) |
Full raw JSON from wttr.in |
debug_env() |
Print runtime environment + all ENV variables |
Development
Setup
git clone <repo-url>
cd weather-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
Build & Publish
# 1. 改版本号(唯一需要改的地方)
# 编辑 weather_mcp/__init__.py 中的 __version__
# 2. 打包(只生成 sdist,不生成 wheel,确保安装时 setup.py debug 打印能触发)
pip install build twine
rm -rf dist/ build/
python -m build --sdist
# 3. 上传到 PyPI
twine upload dist/*
# 4. 验证
pip install --upgrade weather-mcp-test-in1t
为什么用
--sdist? wheel 安装只解压文件,不执行 setup.py。只上传 sdist 可以确保 pip 从源码构建,setup.py 中的 debug 打印才会在安装时触发。
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file weather_mcp_test_in1t-0.2.0.tar.gz.
File metadata
- Download URL: weather_mcp_test_in1t-0.2.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1b8bab4d02afcdd745123a6fca367069b3def7943947578a2e7267591c760cb
|
|
| MD5 |
444ed81c57ea71a25720d1c7d827d6d5
|
|
| BLAKE2b-256 |
ec63010139ce05c19c0a4dc1e8474451ed6a59585d342ada2de6137ebe17feb2
|