@dangahagan/weather-mcp 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # Weather MCP Server
2
2
 
3
+ [![npm version](https://badge.fury.io/js/@dangahagan%2Fweather-mcp.svg)](https://www.npmjs.com/package/@dangahagan/weather-mcp)
4
+ [![MCP Registry](https://img.shields.io/badge/MCP-Registry-blue)](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.dgahagan/weather-mcp)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+
3
7
  An MCP (Model Context Protocol) server that provides weather data to AI systems like Claude Code. Uses NOAA's API for US weather forecasts and current conditions, plus Open-Meteo for global historical weather data.
4
8
 
9
+ **📦 Available in the [Official MCP Registry](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.dgahagan/weather-mcp)** as `io.github.dgahagan/weather-mcp`
10
+
5
11
  **No API keys required!** Both NOAA and Open-Meteo APIs are free to use with no authentication needed.
6
12
 
7
13
  ## Features
@@ -20,12 +26,12 @@ An MCP (Model Context Protocol) server that provides weather data to AI systems
20
26
 
21
27
  **Via npm:**
22
28
  ```bash
23
- npm install -g weather-mcp
29
+ npm install -g @dangahagan/weather-mcp
24
30
  ```
25
31
 
26
32
  **Via npx (no installation):**
27
33
  ```bash
28
- npx -y weather-mcp
34
+ npx -y @dangahagan/weather-mcp
29
35
  ```
30
36
 
31
37
  Then configure in your MCP client using:
@@ -34,7 +40,7 @@ Then configure in your MCP client using:
34
40
  "mcpServers": {
35
41
  "weather": {
36
42
  "command": "npx",
37
- "args": ["-y", "weather-mcp"]
43
+ "args": ["-y", "@dangahagan/weather-mcp"]
38
44
  }
39
45
  }
40
46
  }
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@dangahagan/weather-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "MCP (Model Context Protocol) server providing weather data from NOAA and Open-Meteo APIs. Supports forecasts, current conditions, and historical weather data (1940-present) with no API keys required.",
5
+ "mcpName": "io.github.dgahagan/weather-mcp",
5
6
  "main": "dist/index.js",
6
7
  "type": "module",
7
8
  "bin": {