Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade Checkmk con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.
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.
Prueba a pedir
Prompts de ejemplo para Checkmk
Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.
Claude es IA y puede equivocarse. Verifica siempre las respuestas.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Checkmk, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Checkmk + Cursor
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.
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
CHECKMK_URL, CHECKMK_USERNAME, CHECKMK_SECRET
Paso 1 — Obtener credenciales
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)
Paso 2 — Instalar el adapter
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
Paso 3 — Añadir el conector en Cursor
Cursor lee servidores MCP desde ~/.cursor/mcp.json. Añade esta entrada:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
- Guarda el archivo y reinicia Cursor.
- Abre Cursor → Configuración → MCP para verificar que
Checkmkaparece como "Connected". - Empieza a chatear — todas las herramientas de
Checkmkestán disponibles.
Herramientas disponibles
| 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
¿Cursor soporta servidores MCP personalizados en el plan free? Sí — MCP está disponible en Hobby, Pro y Business.
Siguientes pasos
¿Te ha sido útil esta guía?