ntfy-mcp-server 1.0.4 → 1.0.6
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 +1 -1
- package/dist/index.js +0 -0
- package/package.json +46 -11
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.typescriptlang.org/)
|
|
4
4
|
[](https://modelcontextprotocol.io/)
|
|
5
|
-
[](https://github.com/cyanheads/ntfy-mcp-server/releases)
|
|
6
6
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
7
7
|
[](https://github.com/cyanheads/ntfy-mcp-server)
|
|
8
8
|
[](https://github.com/cyanheads/ntfy-mcp-server)
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,36 +1,57 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ntfy-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "An MCP (Model Context Protocol) server designed to interact with the ntfy push notification service. It enables LLMs and AI agents to send notifications to your devices with extensive customization options.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/cyanheads/ntfy-mcp-server.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/cyanheads/ntfy-mcp-server/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/cyanheads/ntfy-mcp-server#readme",
|
|
10
18
|
"scripts": {
|
|
11
|
-
"build": "tsc",
|
|
19
|
+
"build": "tsc && node --loader ts-node/esm scripts/make-executable.ts dist/index.js",
|
|
12
20
|
"clean": "ts-node scripts/clean.ts",
|
|
13
21
|
"rebuild": "npm run clean && npm run build",
|
|
14
22
|
"tree": "ts-node scripts/tree.ts",
|
|
15
23
|
"start": "node dist/index.js",
|
|
16
|
-
"
|
|
24
|
+
"start:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio node dist/index.js",
|
|
25
|
+
"start:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http node dist/index.js",
|
|
26
|
+
"watch": "tail -f logs/combined.log",
|
|
27
|
+
"docs:generate": "typedoc",
|
|
28
|
+
"fetch-spec": "ts-node --esm scripts/fetch-openapi-spec.ts"
|
|
17
29
|
},
|
|
18
30
|
"dependencies": {
|
|
19
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
20
|
-
"@types/
|
|
31
|
+
"@modelcontextprotocol/sdk": "^1.11.0",
|
|
32
|
+
"@types/jsonwebtoken": "^9.0.9",
|
|
33
|
+
"@types/node": "^22.15.3",
|
|
21
34
|
"@types/sanitize-html": "^2.15.0",
|
|
22
|
-
"@types/validator": "
|
|
35
|
+
"@types/validator": "13.15.0",
|
|
23
36
|
"@types/xss-filters": "^1.2.0",
|
|
37
|
+
"chrono-node": "^2.8.0",
|
|
24
38
|
"dotenv": "^16.5.0",
|
|
39
|
+
"express": "^5.1.0",
|
|
40
|
+
"ignore": "^7.0.4",
|
|
41
|
+
"jsonwebtoken": "^9.0.2",
|
|
42
|
+
"openai": "^4.96.2",
|
|
43
|
+
"partial-json": "^0.1.7",
|
|
25
44
|
"path-normalize": "^6.0.13",
|
|
26
45
|
"sanitize-html": "^2.16.0",
|
|
46
|
+
"tiktoken": "^1.0.21",
|
|
27
47
|
"ts-node": "^10.9.2",
|
|
28
48
|
"typescript": "^5.8.3",
|
|
29
|
-
"
|
|
30
|
-
"validator": "^13.15.0",
|
|
49
|
+
"validator": "13.15.0",
|
|
31
50
|
"winston": "^3.17.0",
|
|
32
51
|
"winston-daily-rotate-file": "^5.0.0",
|
|
33
|
-
"xss-filters": "^1.2.7"
|
|
52
|
+
"xss-filters": "^1.2.7",
|
|
53
|
+
"yargs": "^17.7.2",
|
|
54
|
+
"zod": "^3.24.3"
|
|
34
55
|
},
|
|
35
56
|
"keywords": [
|
|
36
57
|
"ntfy",
|
|
@@ -43,8 +64,22 @@
|
|
|
43
64
|
"server",
|
|
44
65
|
"typescript",
|
|
45
66
|
"claude",
|
|
46
|
-
"messaging"
|
|
67
|
+
"messaging",
|
|
68
|
+
"template",
|
|
69
|
+
"client",
|
|
70
|
+
"sdk",
|
|
71
|
+
"http",
|
|
72
|
+
"sse",
|
|
73
|
+
"jwt",
|
|
74
|
+
"authentication"
|
|
47
75
|
],
|
|
48
76
|
"author": "Casey Hand @cyanheads",
|
|
49
|
-
"license": "Apache-2.0"
|
|
77
|
+
"license": "Apache-2.0",
|
|
78
|
+
"devDependencies": {
|
|
79
|
+
"@types/express": "^5.0.1",
|
|
80
|
+
"@types/js-yaml": "^4.0.9",
|
|
81
|
+
"axios": "^1.9.0",
|
|
82
|
+
"js-yaml": "^4.1.0",
|
|
83
|
+
"typedoc": "^0.28.3"
|
|
84
|
+
}
|
|
50
85
|
}
|