Weather Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Weather Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
一个最小化但完整的 MCP (Model Context Protocol) 服务端实现,为 AI Agent 提供实时天气查询能力。
这是 从零学 AI Agent 架构 的实战项目 #1。MCP 协议是 AI Agent 与外部世界交互的标准接口——理解 MCP 是理解整个 Agent 架构的第一步。本项目用最小的代码量(~200 行)展示 MCP Server 的完整生命周期。
# 1. 安装
cd weather-mcp-server
pip install -e .
# 2. 测试
pytest tests/ -v
# 3. 运行(stdio transport)
weather-mcp在 claude_desktop_config.json 或 .claude/settings.json 中添加:
{
"mcpServers": {
"weather": {
"command": "uv",
"args": [
"run",
"--directory", "D:\\AI_Space\\ClaudeCode-DeepSeek\\weather-mcp-server",
"weather-mcp"
]
}
}
}重启 Claude Code 后,你就能看到 mcp__weather__get_current_weather 和 mcp__weather__get_forecast 两个工具。
| 工具名 | 用途 | 参数 |
|---|---|---|
get_current_weather | 实时天气(温度/体感/风速/湿度/紫外线) | city (string) |
get_forecast | 未来 N 天预报 | city (string), days (int, 1-3) |
┌──────────────────────────────────────────┐
│ Claude Code (Host) │
│ ┌────────────────────────────────────┐ │
│ │ MCP Client (weather) │ │
│ │ JSON-RPC over stdio │ │
│ └──────────────┬─────────────────────┘ │
└─────────────────┼────────────────────────┘
│ stdin/stdout
┌─────────────────▼────────────────────────┐
│ Weather MCP Server │
│ ┌────────────────────────────────────┐ │
│ │ handle_list_tools() │ │
│ │ handle_call_tool() │ │
│ └──────────┬─────────────────────────┘ │
│ │ │
│ ┌──────────▼─────────────────────────┐ │
│ │ fetch_weather() (wttr.in) │ │
│ └────────────────────────────────────┘ │
└──────────────────────────────────────────┘weather-mcp-server/
├── pyproject.toml # 项目配置和依赖
├── README.md # 本文件
├── src/
│ └── weather_mcp/
│ ├── __init__.py
│ └── server.py # MCP Server 核心(~200行)
└── tests/
└── test_server.py # 单元测试 + 集成测试通过这个项目你可以理解:
MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.