Installation überspringen. In unter 2 Minuten einsatzbereit.
Starte eine kostenlose Testphase auf cloud.anythingmcp.com, füge Checkmk mit einem Klick hinzu und richte deinen KI-Client (Claude, ChatGPT, Copilot oder Cursor) auf den erzeugten MCP-Endpoint. Kein Docker, kein git clone, keinerlei Entwicklungserfahrung nötig.
Summary
Checkmk monitoring: hosts and their configuration, live service states, acknowledged and unhandled problems, host groups and downtimes. REST API on your own site, bearer-style automation user auth.
Frag einfach
Beispiel-Prompts für Checkmk
Klick auf einen Prompt, um ihn zu kopieren. In Claude, ChatGPT, Cursor, Gemini, Copilot oder OpenClaw einfügen — und gegen diesen Connector laufen lassen.
Claude ist KI und kann Fehler machen. Bitte Antworten gegenprüfen.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Checkmk klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Checkmk + Gemini
Checkmk monitoring: hosts and their configuration, live service states, acknowledged and unhandled problems, host groups and downtimes. REST API on your own site, bearer-style automation user auth.
Voraussetzungen
Die vollständige Setup-Anleitung ist in den Connector eingebaut (im Store sichtbar, wenn du den Connector auswählst). Benötigte Umgebungsvariablen für diesen Connector:
CHECKMK_URL, CHECKMK_USERNAME, CHECKMK_SECRET
Schritt 1 — Zugangsdaten holen
Setup
- In Checkmk create an automation user: Setup → Users → Add user, tick Automation secret for machine accounts, and copy the secret. Give it the
guestrole for read-only access, oradminif you want the configuration endpoints. - Set
CHECKMK_URLto your site root including the site name —https://monitoring.example.com/mysite— with no trailing slash. The site name is part of the path and leaving it out is the usual cause of a 404 that looks like a wrong version. - Set
CHECKMK_USERNAMEto the automation user andCHECKMK_SECRETto its secret.
…(continued in the in-app connector instructions)
Schritt 2 — Adapter installieren
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Schritt 3 — Connector in Gemini hinzufügen
Gemini CLI liest MCP-Server aus ~/.gemini/settings.json (oder %APPDATA%\gemini\settings.json unter Windows). Hinzufügen:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Hole deinen MCP API Key aus AnythingMCP → Profil → MCP API Keys → Neuer Key.
- Speichern und
geminineu starten. /mcpin Gemini CLI ausführen —Checkmksollte als verfügbar gelistet sein.- Vertex AI Studio:
https://cloud.anythingmcp.com/mcpimtools-Array der Anfrage mit demselben Bearer-Header übergeben.
Verfügbare Tools
| Tool | What it does |
|---|---|
checkmk_get_version | Read the Checkmk version and edition of this site |
checkmk_list_hosts | List hosts from the configuration: what has been set up for monitoring, with folder, attributes and effective settings |
checkmk_get_host_config | Read one host's configuration: its folder, IP address, tags, labels and the attributes it inherits |
checkmk_list_host_states | Read the live state of hosts: up, down or unreachable, with the check output and how long each has been that way |
checkmk_list_service_states | Read the live state of services — the red, amber and green checks |
checkmk_list_host_services | Read every service on one host with its current state and check output — the drill-down after a host has been flagged |
checkmk_list_host_groups | List the host groups configured on this site with their alias, so a query can be scoped to a part of the estate |
checkmk_list_downtimes | List scheduled downtimes with their host, service, comment, author and window — the explanation for why an alert did not fire |
checkmk_list_folders | List the Checkmk folder tree with each folder's title, path and attributes — how hosts are organised and where settings are inherited from |
FAQ
Unterstützen Gemini 1.5 Pro oder 2.x MCP? Ja — Gemini CLI ≥ 0.4 und die Vertex AI Tools API akzeptieren MCP httpUrl-Connectors mit Bearer-Header.
Nächste Schritte
War dieser Guide hilfreich?