name: weather-data description: Provides weather forecast data from NOAA. Free tier returns 3-day forecast, premium tier returns 7-day with hourly data. user-invocable: true
Get weather forecasts for any location using NOAA data.
curl "http://localhost:5000/forecast?lat=40.71&lon=-74.00"
Requires x402 payment (0.05 USDC)
curl -H "X-Payment: <payment_header>" "http://localhost:5000/forecast/premium?lat=40.71&lon=-74.00"
GET /forecast - Free 3-day forecastGET /forecast/premium - Paid 7-day + hourly forecast (0.05 USDC)GET /health - Health checklat - Latitude (default: 40.71)lon - Longitude (default: -74.00)这个天气服务的功能设计有亮点,支持免费和付费两种模式,但整体内容过于简单。文档清晰易读,能基本说明用法,不过信息不够丰富,缺少实际使用示例和数据返回格式说明。作为一个服务型Skill,核心代码的缺失让人难以评估其实际质量和可靠性。总体来说可用性一般,建议期待更完整的版本。