uptime-kuma-mcp-server
0
Uptime Kuma MCP Server is designed to manage Uptime Kuma monitors through the Model Context Protocol. It offers tools to add, retrieve, and delete monitors efficiently. The server facilitates seamless integration and automated control.
Uptime Kuma MCP Server
A server for managing Uptime Kuma monitors via MCP protocol.
Installation
uvx uptime-kuma-mcp-server
"mcpServers": {
"uptime-kuma-mcp-server": {
"command": "uvx",
"args": ["uptime-kuma-mcp-server"],
"env": {
"KUMA_URL": "https://yourdomain.xyz",
"KUMA_USERNAME": "username",
"KUMA_PASSWORD": "passwd"
}
},
}
Available Tools
add_monitors
- Batch add multiple monitors to Uptime Kuma, returns Uptime Kuma page URLs after completionurls
(list[str], required): List of monitor URLs (must be deduplicated and include full protocol, e.g. https://bing.com)
get_monitors
- Get all monitors list, returns trimmed fields to prevent context overflowdelete_monitors
- Batch delete multiple monitorsids
(list[int], required): List of monitor IDs to delete
Run SSE
# run_sse.py
from uptime_kuma_mcp_server import run_sse
run_sse()
# Uvicorn running on http://0.0.0.0:8000