Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for Centreon IT monitoring that enables querying host/service status, managing acknowledgements and downtimes, and retrieving performance metrics via natural language.

README.md

mcp-centreon

MCP server for Centreon IT monitoring — hosts, services, alerts, acknowledgements, and downtimes.

Integrates Claude (or any MCP-compatible AI) with Centreon to query monitoring status, manage acknowledgements and downtimes, and retrieve performance metrics.

Features

  • Hosts — list, search, and inspect monitored hosts; acknowledge problems; schedule downtimes
  • Services — list and filter services by state or host; acknowledge and schedule downtimes
  • Alerts — browse recent events, active acknowledgements, and scheduled/active downtimes
  • Performance — list available metrics per service and fetch time-series data
  • Platform status — cluster-level host/service state counts; poller topology

API version support

Targets Centreon REST API v2 (/centreon/api/latest/), supported in Centreon 21.04 and later (including 21.10, 22.x, 23.x, 24.x).

The authentication endpoint used is:

POST https://{host}/centreon/api/latest/authentication/providers/configurations/local

If you use an older Centreon installation that only exposes the legacy v1 API, the monitoring endpoints will not be available. Upgrade to Centreon 21.04+ to use this server.

Required Centreon user permissions

A read-only user is sufficient for all monitoring and read operations:

| Permission | Reason | |---|---| | View all objects (or access to relevant host groups) | Needed for listing hosts and services | | Reach API configuration | Required for host/service groups endpoints | | Reach API realtime | Required for monitoring, events, metrics endpoints |

To use acknowledgement and downtime tools the user also needs:

| Permission | Reason | |---|---| | Acknowledge resources | acknowledge_host, acknowledge_service | | Schedule downtimes | add_downtime_host, add_downtime_service |

Create the API user in Administration > ACL > ACL Access Groups and assign the relevant ACL menus and actions.

Setup

1. Install

npm install -g mcp-centreon

Or run directly without installing:

npx mcp-centreon

Or clone and build:

git clone https://github.com/fredriksknese/mcp-centreon
cd mcp-centreon
npm install
npm run build

2. Environment variables

| Variable | Required | Default | Description | |---|---|---|---| | CENTREON_HOST | Yes | — | Centreon server hostname or IP (without https://) | | CENTREON_USERNAME | No | admin | Centreon login username | | CENTREON_PASSWORD | Yes | — | Centreon login password | | CENTREON_ALLOW_SELF_SIGNED | No | true | Accept self-signed TLS certificates (true/false) |

3. Claude Desktop configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "centreon": {
      "command": "npx",
      "args": ["mcp-centreon"],
      "env": {
        "CENTREON_HOST": "centreon.example.com",
        "CENTREON_USERNAME": "admin",
        "CENTREON_PASSWORD": "your-password-here",
        "CENTREON_ALLOW_SELF_SIGNED": "true"
      }
    }
  }
}

If you installed globally via npm install -g:

{
  "mcpServers": {
    "centreon": {
      "command": "mcp-centreon",
      "env": {
        "CENTREON_HOST": "centreon.example.com",
        "CENTREON_USERNAME": "admin",
        "CENTREON_PASSWORD": "your-password-here"
      }
    }
  }
}

Available tools

Hosts

| Tool | Description | |---|---| | list_hosts | List monitored hosts; filter by name or state (up/down/unreachable/pending) | | get_host | Get full details for a host by ID | | list_host_groups | List host groups with member counts | | acknowledge_host | Acknowledge a host problem | | add_downtime_host | Schedule a maintenance downtime for a host |

Services

| Tool | Description | |---|---| | list_services | List services; filter by host name, service name, or state | | get_service | Get full details for a service by host ID and service ID | | list_service_groups | List service groups | | acknowledge_service | Acknowledge a service problem | | add_downtime_service | Schedule a maintenance downtime for a service |

Alerts

| Tool | Description | |---|---| | list_events | List recent monitoring events; filter by host, state, or check type (soft/hard) | | list_acknowledgements | List active acknowledgements — who acknowledged what and when | | list_downtimes | List active and scheduled downtimes |

Performance

| Tool | Description | |---|---| | get_service_metrics | List available performance metrics for a service | | get_metrics_data | Get time-series data for a specific metric |

Platform status

| Tool | Description | |---|---| | get_platform_status | Platform-level host/service counts broken down by state | | get_poller_list | List pollers and remote servers with connectivity status |

State mappings

| Code | Host state | Service state | |---|---|---| | 0 | Up | Ok | | 1 | Down | Warning | | 2 | Unreachable | Critical | | 3 | — | Unknown | | 4 | Pending | Pending |

License

SEE LICENSE IN LICENSE

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.