@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.
- package/README.md +9 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# Weather MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@dangahagan/weather-mcp)
|
|
4
|
+
[](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.dgahagan/weather-mcp)
|
|
5
|
+
[](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.
|
|
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": {
|