-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mcp-notifications",
"bin": {
"mcp-notifications": "./build/index.js"
},
"version": "2.3.0",
"description": "Lightweight Node.js server for sending webhook notifications. Supports Discord, Slack, Teams, Feishu, and custom webhooks. Ideal for AI-assisted developers working across multiple projects.",
"main": "build/index.js",
"authors": [
{
"name": "tuberrabbit",
"email": "tuberrabbit@gmail.com"
},
{
"name": "Jason McElhenny",
"email": "me@zod.tf",
"url": "https://github.com/zudsniper"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/zudsniper/mcp-server-notifier.git"
},
"keywords": [
"mcp",
"feishu",
"discord",
"slack",
"teams",
"webhook",
"notification",
"ai",
"developer",
"tool",
"imgur"
],
"type": "module",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.9.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "22.14.0",
"typescript": "5.8.3"
}
}