Skip to content

Commit ca3eff5

Browse files
committed
Add pushover MCP
This uses https://github.com/ashiknesin/pushover-mcp as an MCP for the Pushover API. Signed-off-by: Juan Antonio Osorio <[email protected]>
1 parent 2cb6a21 commit ca3eff5

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

pkg/registry/data/registry.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,63 @@
858858
"sql"
859859
]
860860
},
861+
"pushover": {
862+
"image": "ashiknesin/pushover-mcp:latest",
863+
"description": "A Model Context Protocol implementation for sending notifications via Pushover.net, enabling AI agents to send customizable push notifications to devices.",
864+
"transport": "stdio",
865+
"permissions": {
866+
"read": [],
867+
"write": [],
868+
"network": {
869+
"outbound": {
870+
"insecure_allow_all": false,
871+
"allow_transport": [
872+
"tcp"
873+
],
874+
"allow_host": [
875+
"api.pushover.net"
876+
],
877+
"allow_port": [
878+
443
879+
]
880+
}
881+
}
882+
},
883+
"tools": [
884+
"send"
885+
],
886+
"env_vars": [
887+
{
888+
"name": "PUSHOVER_TOKEN",
889+
"description": "Application token from Pushover.net",
890+
"required": true
891+
},
892+
{
893+
"name": "PUSHOVER_USER",
894+
"description": "User key from Pushover.net",
895+
"required": true
896+
}
897+
],
898+
"args": [],
899+
"metadata": {
900+
"stars": 7,
901+
"pulls": 0,
902+
"last_updated": "2025-03-25T16:58:54Z"
903+
},
904+
"repository_url": "https://github.com/ashiknesin/pushover-mcp",
905+
"tags": [
906+
"notifications",
907+
"push-notifications",
908+
"pushover",
909+
"alerts",
910+
"messaging",
911+
"mobile",
912+
"devices",
913+
"communication",
914+
"real-time",
915+
"monitoring"
916+
]
917+
},
861918
"puppeteer": {
862919
"image": "mcp/puppeteer:latest",
863920
"description": "A Model Context Protocol server that provides browser automation capabilities using Puppeteer",

0 commit comments

Comments
 (0)