LibreNMS MCP
LibreNMS MCP Server is a Python-based Model Context Protocol (MCP) server designed to provide advanced, programmable access to LibreNMS network monitoring data and management features. It exposes a modern API for querying, automating, and integrating LibreNMS resources such as devices, ports, alerts, inventory, locations, logs, and more. The server supports both read and write operations, robust security features…. Its 40 documented tools cover device, devicegroup, ports, location.
People connecting DevOps & monitoring tools to Claude, Cursor, VS Code, or another MCP client. The project is written in Python.
VERIFIED ACTIVE
LAST COMMIT 2026-08-20 · ★ 37 · #3 OF 101 MAINTAINED DEVOPS & MONITORING · VERIFIED 2026-08-25
MIT · Python servers · how we verify → /methodology
01 · Install LibreNMS MCP
before you install - you'll need
Set LIBRENMS_URL, LIBRENMS_TOKEN, LIBRENMS_VERIFY_SSL, LIBRENMS_TIMEOUT, READ_ONLY_MODE, LOG_LEVEL, RATE_LIMIT_ENABLED, RATE_LIMIT_MAX_REQUESTS, RATE_LIMIT_WINDOW_MINUTES, TOOL_SEARCH_ENABLED, TOOL_SEARCH_STRATEGY before connecting. TOOL_SEARCH_MAX_RESULTS is optional or environment-specific per the README.
Claude Code
claude mcp add mhajder-librenms-mcp -- uvx librenms-mcp Claude Desktop / Cursor / VS Code - add to config
{
"mcpServers": {
"mhajder-librenms-mcp": {
"command": "uvx",
"args": [
"librenms-mcp"
]
}
}
} Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.
Using another client? Same JSON, different key
Claude Desktop · mcpServers
Cursor · mcpServers
VS Code · servers
Windsurf · mcpServers
Zed · context_servers
Cline · mcpServers
Roo Code · mcpServers
Continue · mcpServers
LibreChat · mcpServers
Gemini CLI · mcpServers
Codex CLI · mcp_servers
Full setup guides: every client.
02 · Evidence
Security posture
What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.
runs as local process (stdio) - runs on your machine with your user's permissions · container (OCI image) - can be sandboxed away from your filesystem
license MIT - declared in the repository
pypi package librenms-mcp - check the name against the project README before installing (PyPI has no namespace ownership)
registry namespace io.github.mhajder is GitHub-verified and matches the repo owner
03 · What LibreNMS MCP can do
Prose above is summarized from the project's README and registry record - no invented capabilities.
What you can build
With this server connected, an agent can list all devices (with optional filters), get details for a specific device, add a new device, and update device metadata.
Capability map
Tools grouped from the project's README - what LibreNMS MCP lets an agent do.
Device
19 tools - e.g. Get details for a specific device; Add a new device; Update device metadata
device_get · device_add · device_update · device_delete · device_ports · device_ports_get…
Devicegroup
7 tools - e.g. Add a device group; Update a device group; Delete a device group
devicegroup_add · devicegroup_update · devicegroup_delete · devicegroup_devices · devicegroup_set_maintenance · devicegroup_add_devices…
Location
5 tools - e.g. Add a location; Edit a location; Delete a location
location_add · location_edit · location_delete · location_get · location_set_maintenance
Ports
4 tools - e.g. List all ports (with optional filters); Search ports (general search); Search ports by a specific field
ports_list · ports_search · ports_search_field · ports_search_mac
Port
2 tools - e.g. Get details for a specific port; List MAC addresses learned on a port
port_get · port_fdb
Devices
1 tool - e.g. List all devices (with optional filters)
devices_list
Devicegroups
1 tool - e.g. List device groups
devicegroups_list
Locations
1 tool - e.g. List all locations
locations_list
Latest releases
v1.11.1 · 2026-08-12
1.11.1 (2026-08-11) · use the alert_templates API route · return bill graphs as images · report the status code for non-JSON responses · treat blank env vars as unset · paginate config search on the nodes key · resolve…
v1.11.0 · 2026-07-31
1.11.0 (2026-07-31) · add graph, FDB, port security and NAC tools · Docker Images · ghcr.io/mhajder/librenms-mcp:v1.11.0 · ghcr.io/mhajder/librenms-mcpo:v1.11.0
v1.10.3 · 2026-07-06
1.10.3 (2026-07-06) · Refactoring · update default HTTP bind address and improve transport validation · Docker Images · ghcr.io/mhajder/librenms-mcp:v1.10.3 · ghcr.io/mhajder/librenms-mcpo:v1.10.3
04 · Who maintains LibreNMS MCP
LibreNMS MCP is maintained by mhajder. We track 3 MCP servers from mhajder - 3 actively maintained, 63 combined GitHub stars, oldest repo from Aug 2025. Full record: all servers from mhajder.
05 · Facts
- repository
- github.com/mhajder/librenms-mcp
- category
- DevOps & monitoring - ranked #3 of 101 actively-maintained DevOps & monitoring servers as of 2026-08-25.
- release cadence
- 6 releases in the last 90 days (latest 2026-08-12)
- registry
- io.github.mhajder/librenms-mcp (active, first published 2026-01-25 · 11 versions)
- packages
- pypi:librenms-mcp · pypi:librenms-mcp · oci:ghcr.io/mhajder/librenms-mcp:1.11.1
06 · LibreNMS MCP FAQ
Is LibreNMS MCP still maintained?
Yes - as of 2026-08-25, its last commit was 2026-08-20 and it shipped 6 releases in the last 90 days. We re-verify nightly.
What can LibreNMS MCP do?
With this server connected, an agent can list all devices (with optional filters), get details for a specific device, add a new device, and update device metadata.
How do I install LibreNMS MCP?
Run `uvx librenms-mcp`. The README documents 12 environment variables (LIBRENMS_URL, LIBRENMS_TOKEN, LIBRENMS_VERIFY_SSL…) to set first. Set LIBRENMS_URL, LIBRENMS_TOKEN, LIBRENMS_VERIFY_SSL, LIBRENMS_TIMEOUT, READ_ONLY_MODE, LOG_LEVEL, RATE_LIMIT_ENABLED, RATE_LIMIT_MAX_REQUESTS, RATE_LIMIT_WINDOW_MINUTES, TOOL_SEARCH_ENABLED, TOOL_SEARCH_STRATEGY before connecting. TOOL_SEARCH_MAX_RESULTS is optional or environment-specific per the README. You can also paste the ready-made client config above.
Does LibreNMS MCP run locally?
Yes - it's a stdio server: it runs on your machine (via uvx) with your user's permissions. Your data stays local unless the server itself calls external APIs.
07 · Alternatives to LibreNMS MCP
Alternatives to LibreNMS MCP
Maintained DevOps & monitoring servers if LibreNMS MCP isn't the fit.
- World Monitor Live global intelligence: real-time markets, conflicts, country risk, chokepoints, energy. 39 tools. ★ 83,963 · 2026-08-24
- Open Metadata Official OpenMetadata MCP: governed context and business semantics for AI assistants and agents. ★ 14,959 · 2026-08-25
- Kubeshark MCP Server Real-time Kubernetes network traffic visibility and API analysis for HTTP, gRPC, Redis, Kafka, DNS. ★ 12,057 · 2026-08-18
- Grafana An MCP server giving access to Grafana dashboards, data and more. ★ 3,384 · 2026-08-24
- Radar Kubernetes visibility for AI agents: query workloads, events, logs, topology, and Helm releases. ★ 3,103 · 2026-08-24
- Testkube MCP MCP server for Testkube - Manage test workflows, executions, and artifacts via AI assistants ★ 1,647 · 2026-08-24
Pairs well with
Servers that cover what LibreNMS MCP doesn't - only shown when the pairing reason fits the companion.
head to head · Dynatrace MCP vs LibreNMS MCP · World Monitor vs LibreNMS MCP · Monitor vs LibreNMS MCP
More DevOps & monitoring MCP servers · Zabbix MCP · Raygun · GitLab CI MCP · DevOps MCP · Monerometrics
More Python MCP servers · Relay · PLwC - Personality Layer with Conscience · Hot Memory MCP · Ollama Handoff · see all