Skip to content

Commit d800ffc

Browse files
authored
Merge pull request #32 from stacklok/pushover
Add Pushover MCP
2 parents 38c82a2 + ca3eff5 commit d800ffc

File tree

1 file changed

+122
-0
lines changed

1 file changed

+122
-0
lines changed

pkg/registry/data/registry.json

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -915,6 +915,63 @@
915915
"sql"
916916
]
917917
},
918+
"pushover": {
919+
"image": "ashiknesin/pushover-mcp:latest",
920+
"description": "A Model Context Protocol implementation for sending notifications via Pushover.net, enabling AI agents to send customizable push notifications to devices.",
921+
"transport": "stdio",
922+
"permissions": {
923+
"read": [],
924+
"write": [],
925+
"network": {
926+
"outbound": {
927+
"insecure_allow_all": false,
928+
"allow_transport": [
929+
"tcp"
930+
],
931+
"allow_host": [
932+
"api.pushover.net"
933+
],
934+
"allow_port": [
935+
443
936+
]
937+
}
938+
}
939+
},
940+
"tools": [
941+
"send"
942+
],
943+
"env_vars": [
944+
{
945+
"name": "PUSHOVER_TOKEN",
946+
"description": "Application token from Pushover.net",
947+
"required": true
948+
},
949+
{
950+
"name": "PUSHOVER_USER",
951+
"description": "User key from Pushover.net",
952+
"required": true
953+
}
954+
],
955+
"args": [],
956+
"metadata": {
957+
"stars": 7,
958+
"pulls": 0,
959+
"last_updated": "2025-03-25T16:58:54Z"
960+
},
961+
"repository_url": "https://github.com/ashiknesin/pushover-mcp",
962+
"tags": [
963+
"notifications",
964+
"push-notifications",
965+
"pushover",
966+
"alerts",
967+
"messaging",
968+
"mobile",
969+
"devices",
970+
"communication",
971+
"real-time",
972+
"monitoring"
973+
]
974+
},
918975
"puppeteer": {
919976
"image": "mcp/puppeteer:latest",
920977
"description": "A Model Context Protocol server that provides browser automation capabilities using Puppeteer",
@@ -1317,6 +1374,71 @@
13171374
"tags": [
13181375
"atlassian"
13191376
]
1377+
},
1378+
"hass-mcp": {
1379+
"image": "voska/hass-mcp:latest",
1380+
"description": "A Model Context Protocol (MCP) server for Home Assistant integration with Claude and other LLMs, enabling direct interaction with smart home devices, sensors, and automations.",
1381+
"transport": "stdio",
1382+
"permissions": {
1383+
"read": [],
1384+
"write": [],
1385+
"network": {
1386+
"outbound": {
1387+
"insecure_allow_all": true,
1388+
"allow_transport": [
1389+
"tcp"
1390+
],
1391+
"allow_host": [
1392+
],
1393+
"allow_port": [
1394+
]
1395+
}
1396+
}
1397+
},
1398+
"tools": [
1399+
"get_version",
1400+
"get_entity",
1401+
"entity_action",
1402+
"list_entities",
1403+
"search_entities_tool",
1404+
"domain_summary_tool",
1405+
"list_automations",
1406+
"call_service_tool",
1407+
"restart_ha",
1408+
"get_history",
1409+
"get_error_log"
1410+
],
1411+
"env_vars": [
1412+
{
1413+
"name": "HA_URL",
1414+
"description": "Home Assistant instance URL (e.g. http://homeassistant.local:8123)",
1415+
"required": true
1416+
},
1417+
{
1418+
"name": "HA_TOKEN",
1419+
"description": "Home Assistant Long-Lived Access Token",
1420+
"required": true
1421+
}
1422+
],
1423+
"args": [],
1424+
"metadata": {
1425+
"stars": 19,
1426+
"pulls": 0,
1427+
"last_updated": "2025-03-25T16:58:54Z"
1428+
},
1429+
"repository_url": "https://github.com/voska/hass-mcp",
1430+
"tags": [
1431+
"home-assistant",
1432+
"smart-home",
1433+
"automation",
1434+
"iot",
1435+
"sensors",
1436+
"devices",
1437+
"control",
1438+
"monitoring",
1439+
"home-automation",
1440+
"domotics"
1441+
]
13201442
}
13211443
}
13221444
}

0 commit comments

Comments
 (0)