-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
64 lines (64 loc) · 1.77 KB
/
Copy pathmanifest.json
File metadata and controls
64 lines (64 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"manifest_version": "0.3",
"name": "pushover-mcp",
"display_name": "Pushover MCP",
"version": "0.0.0",
"description": "Pushover notification MCP server for AI agents. Send push notifications and manage emergency-priority messages via the Pushover API.",
"author": {
"name": "freeformz",
"url": "https://github.com/freeformz"
},
"user_config": {
"pushover_token": {
"type": "string",
"title": "Pushover API Token",
"description": "Your Pushover application API token. Create one at https://pushover.net/apps",
"required": true,
"sensitive": true
},
"pushover_user_key": {
"type": "string",
"title": "Pushover User Key",
"description": "Your Pushover user key. Find it at https://pushover.net",
"required": true,
"sensitive": true
}
},
"server": {
"type": "binary",
"entry_point": "server/pushover-mcp",
"mcp_config": {
"command": "${__dirname}/server/pushover-mcp",
"args": ["mcp"],
"env": {
"PUSHOVER_TOKEN": "${user_config.pushover_token}",
"PUSHOVER_USER_KEY": "${user_config.pushover_user_key}"
}
}
},
"tools": [
{
"name": "pushover_send_message",
"description": "Send a push notification via the Pushover API"
},
{
"name": "pushover_check_receipt",
"description": "Check the status of an emergency-priority notification receipt"
},
{
"name": "pushover_cancel_receipt",
"description": "Cancel retries for an emergency-priority notification"
},
{
"name": "pushover_cancel_receipt_by_tag",
"description": "Cancel all emergency-priority notifications matching a tag"
}
],
"compatibility": {
"platforms": [
"darwin",
"win32",
"linux"
]
}
}