Server data from the Official MCP Registry
MCP server for LibreNMS network monitoring - query devices, ports, alerts, and manage infrastructure
MCP server for LibreNMS network monitoring - query devices, ports, alerts, and manage infrastructure
Valid MCP server (0 strong, 2 medium validity signals). 4 known CVEs in dependencies (1 critical, 1 high severity) Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (3/3 approved).
3 files analyzed · 5 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: LIBRENMS_URL
Environment variable: LIBRENMS_TOKEN
Environment variable: LIBRENMS_VERIFY_SSL
Environment variable: LIBRENMS_TIMEOUT
Environment variable: READ_ONLY_MODE
Environment variable: DISABLED_TAGS
Environment variable: LOG_LEVEL
Environment variable: RATE_LIMIT_ENABLED
Environment variable: RATE_LIMIT_MAX_REQUESTS
Environment variable: RATE_LIMIT_WINDOW_MINUTES
Environment variable: TOOL_SEARCH_ENABLED
Environment variable: TOOL_SEARCH_STRATEGY
Environment variable: TOOL_SEARCH_MAX_RESULTS
Environment variable: MCP_HTTP_PORT
Environment variable: MCP_HTTP_BEARER_TOKEN
Environment variable: MCP_TRANSPORT
Environment variable: SENTRY_DSN
Environment variable: SENTRY_TRACES_SAMPLE_RATE
Environment variable: SENTRY_SEND_DEFAULT_PII
Environment variable: SENTRY_ENVIRONMENT
Environment variable: SENTRY_RELEASE
Environment variable: SENTRY_PROFILE_SESSION_SAMPLE_RATE
Environment variable: SENTRY_PROFILE_LIFECYCLE
Environment variable: SENTRY_ENABLE_LOGS
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-mhajder-librenms-mcp": {
"env": {
"LOG_LEVEL": "your-log-level-here",
"SENTRY_DSN": "your-sentry-dsn-here",
"LIBRENMS_URL": "your-librenms-url-here",
"DISABLED_TAGS": "your-disabled-tags-here",
"MCP_HTTP_PORT": "your-mcp-http-port-here",
"MCP_TRANSPORT": "your-mcp-transport-here",
"LIBRENMS_TOKEN": "your-librenms-token-here",
"READ_ONLY_MODE": "your-read-only-mode-here",
"SENTRY_RELEASE": "your-sentry-release-here",
"LIBRENMS_TIMEOUT": "your-librenms-timeout-here",
"RATE_LIMIT_ENABLED": "your-rate-limit-enabled-here",
"SENTRY_ENABLE_LOGS": "your-sentry-enable-logs-here",
"SENTRY_ENVIRONMENT": "your-sentry-environment-here",
"LIBRENMS_VERIFY_SSL": "your-librenms-verify-ssl-here",
"TOOL_SEARCH_ENABLED": "your-tool-search-enabled-here",
"TOOL_SEARCH_STRATEGY": "your-tool-search-strategy-here",
"MCP_HTTP_BEARER_TOKEN": "your-mcp-http-bearer-token-here",
"RATE_LIMIT_MAX_REQUESTS": "your-rate-limit-max-requests-here",
"SENTRY_SEND_DEFAULT_PII": "your-sentry-send-default-pii-here",
"TOOL_SEARCH_MAX_RESULTS": "your-tool-search-max-results-here",
"SENTRY_PROFILE_LIFECYCLE": "your-sentry-profile-lifecycle-here",
"RATE_LIMIT_WINDOW_MINUTES": "your-rate-limit-window-minutes-here",
"SENTRY_TRACES_SAMPLE_RATE": "your-sentry-traces-sample-rate-here",
"SENTRY_PROFILE_SESSION_SAMPLE_RATE": "your-sentry-profile-session-sample-rate-here"
},
"args": [
"{MCP_HTTP_PORT}:{MCP_HTTP_PORT}",
"librenms-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
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, and is suitable for integration with automation tools, dashboards, and custom network management workflows.
The easiest way to get started is to install from PyPI:
# Using UV (recommended)
uvx librenms-mcp
# Or using pip
pip install librenms-mcp
Remember to configure the environment variables for your LibreNMS instance before running the server:
# Create environment configuration
export LIBRENMS_URL=https://domain.tld:8443
export LIBRENMS_TOKEN=your-librenms-token
For more details, visit: https://pypi.org/project/librenms-mcp/
git clone https://github.com/mhajder/librenms-mcp.git
cd librenms-mcp
# Using UV (recommended)
uv sync
# Or using pip
pip install -e .
cp .env.example .env
# Edit .env with your LibreNMS url and token
# Using UV
uv run python run_server.py
# Or directly with Python
python run_server.py
# Or using the installed script
librenms-mcp
A Docker images are available on GitHub Packages for easy deployment.
# Normal STDIO image
docker pull ghcr.io/mhajder/librenms-mcp:latest
# MCPO image for usage with Open WebUI
docker pull ghcr.io/mhajder/librenms-mcpo:latest
For development with additional tools:
# Clone and install with development dependencies
git clone https://github.com/mhajder/librenms-mcp.git
cd librenms-mcp
uv sync --group dev
# Run tests
uv run pytest
# Run with coverage
uv run pytest --cov=src/
# Run linting and formatting
uv run ruff check .
uv run ruff format .
# Run type checking
uv run ty check .
# Setup pre-commit hooks
uv run prek install
# LibreNMS Connection Details
LIBRENMS_URL=https://domain.tld:8443
LIBRENMS_TOKEN=your-librenms-token
# SSL Configuration
LIBRENMS_VERIFY_SSL=true
LIBRENMS_TIMEOUT=30
# Read-Only Mode
# Set READ_ONLY_MODE true to disable all write operations (put, post, delete)
READ_ONLY_MODE=false
# Disabled Tags
# Comma-separated list of tags to disable tools for (empty by default)
# Example: DISABLED_TAGS=alert,bills
DISABLED_TAGS=
# Logging Configuration
LOG_LEVEL=INFO
# Rate Limiting (requests per minute)
# Set RATE_LIMIT_ENABLED true to enable rate limiting
RATE_LIMIT_ENABLED=false
RATE_LIMIT_MAX_REQUESTS=100
RATE_LIMIT_WINDOW_MINUTES=1
# Tool Search Transform (Optional)
# Set TOOL_SEARCH_ENABLED true to replace full tool listings with search_tools + call_tool
TOOL_SEARCH_ENABLED=false
# Search strategy: bm25 (natural language) or regex (pattern match)
TOOL_SEARCH_STRATEGY=bm25
# Maximum number of tools returned by search_tools
TOOL_SEARCH_MAX_RESULTS=5
# Sentry Error Tracking (Optional)
# Set SENTRY_DSN to enable error tracking and performance monitoring
# SENTRY_DSN=https://your-key@o12345.ingest.us.sentry.io/6789
# Optional Sentry configuration
# SENTRY_TRACES_SAMPLE_RATE=1.0
# SENTRY_SEND_DEFAULT_PII=true
# SENTRY_ENVIRONMENT=production
# SENTRY_RELEASE=1.2.3
# SENTRY_PROFILE_SESSION_SAMPLE_RATE=1.0
# SENTRY_PROFILE_LIFECYCLE=trace
# SENTRY_ENABLE_LOGS=true
# MCP Transport Configuration
# Transport type: 'stdio' (default), 'sse' (Server-Sent Events), or 'http' (HTTP Streamable)
MCP_TRANSPORT=stdio
# HTTP Transport Settings (used when MCP_TRANSPORT=sse or MCP_TRANSPORT=http)
# Host to bind the HTTP server (default: 0.0.0.0 for all interfaces)
MCP_HTTP_HOST=0.0.0.0
# Port to bind the HTTP server (default: 8000)
MCP_HTTP_PORT=8000
# Optional bearer token for authentication (leave empty for no auth)
MCP_HTTP_BEARER_TOKEN=
devices_list: List all devices (with optional filters)device_get: Get details for a specific devicedevice_add: Add a new devicedevice_update: Update device metadatadevice_delete: Remove a devicedevice_ports: List all ports for a devicedevice_ports_get: Get details for a specific port on a devicedevice_availability: Get device availabilitydevice_outages: Get device outagesdevice_set_maintenance: Set device maintenance modedevice_discover: Discover or add a device using provided credentialsdevice_rename: Rename an existing devicedevice_maintenance_status: Get the maintenance status for a devicedevice_vlans: List VLANs for a devicedevice_links: List links for a devicedevice_eventlog_add: Add an event log entry for a deviceinventory_device: Get inventory for a deviceinventory_device_flat: Get flat inventory for a devicedevicegroups_list: List device groupsdevicegroup_add: Add a device groupdevicegroup_update: Update a device groupdevicegroup_delete: Delete a device groupdevicegroup_devices: List devices in a device groupdevicegroup_set_maintenance: Set maintenance for a device groupdevicegroup_add_devices: Add devices to a device groupdevicegroup_remove_devices: Remove devices from a device grouplocations_list: List all locationslocation_add: Add a locationlocation_edit: Edit a locationlocation_delete: Delete a locationlocation_get: Get details for a locationlocation_set_maintenance: Set maintenance for a locationports_list: List all ports (with optional filters)ports_search: Search ports (general search)ports_search_field: Search ports by a specific fieldports_search_mac: Search ports by MAC addressport_get: Get details for a specific portport_ip_info: Get IP address information for a portport_transceiver: Get transceiver information for a portport_description_get: Get a port descriptionport_description_update: Update a port descriptionport_groups_list: List port groupsport_group_add: Add a port groupport_group_list_ports: List ports in a port groupport_group_assign: Assign ports to a port groupport_group_remove: Remove ports from a port groupalerts_get: List current and historical alertsalert_get_by_id: Get details for a specific alertalert_acknowledge: Acknowledge an alertalert_unmute: Unmute an alertalert_rules_list: List alert rulesalert_rule_get: Get details for a specific alert rulealert_rule_add: Add an alert rulealert_rule_edit: Edit an alert rulealert_rule_delete: Delete an alert rulealert_templates_list: List all alert templatesalert_template_get: Get a specific alert templatealert_template_create: Create a new alert templatealert_template_edit: Edit an alert templatealert_template_delete: Delete an alert templatelogs_eventlog: Get event log for a devicelogs_syslog: Get syslog for a devicelogs_alertlog: Get alert log for a devicelogs_authlog: Get auth log for a devicelogs_syslogsink: Add a syslog sinkbills_list: List billsbill_get: Get details for a billbill_graph: Get bill graphbill_graph_data: Get bill graph databill_history: Get bill historybill_history_graph: Get bill history graphbill_history_graph_data: Get bill history graph databill_create_or_update: Create or update a billbill_delete: Delete a billoxidized_list: List devices tracked by Oxidized for config backupoxidized_config_get: Get the stored configuration for a specific deviceoxidized_config_search: Search all stored device configurations for a stringarp_search: Search ARP entriespoller_group_get: Get poller group(s)routing_ip_addresses: List all IP addresses from LibreNMS.services_list: List all services from LibreNMS.services_for_device: Get services for a device from LibreNMS.service_add: Add a service to LibreNMSservice_edit: Edit an existing serviceservice_delete: Delete a servicebgp_sessions: List BGP sessionsbgp_session_get: Get details for a specific BGP sessionbgp_session_edit: Edit a BGP sessionfdb_lookup: Lookup forwarding database (FDB) entriesospf_list: List OSPF instancesospf_ports: List OSPF portsvrf_list: List VRFsping: Ping the LibreNMS systemhealth_list: List health sensorshealth_by_type: List health sensors by typehealth_sensor_get: Get details for a health sensorsensors_list: List sensorsswitching_vlans: List all VLANs from LibreNMS.switching_links: List all links from LibreNMS.system_info: Get system info from LibreNMS.The server supports a read-only mode that disables all write operations for safe monitoring:
READ_ONLY_MODE=true
You can disable specific categories of tools by setting disabled tags:
DISABLED_TAGS=alert,bills
FastMCP tool search can reduce prompt size for servers with many tools.
When enabled, list_tools returns two synthetic tools:
search_tools: Finds matching tools and returns their full schemascall_tool: Executes any discovered tool by nameEnable it with:
TOOL_SEARCH_ENABLED=true
TOOL_SEARCH_STRATEGY=bm25 # bm25 or regex
TOOL_SEARCH_MAX_RESULTS=5 # optional, default is 5
bm25 supports natural language queries, while regex uses a regex pattern input for deterministic matching.
Tool search respects existing visibility controls (read-only mode and disabled tags).
The server supports rate limiting to control API usage and prevent abuse. If enabled, requests are limited per client using a sliding window algorithm.
Enable rate limiting by setting the following environment variables in your .env file:
RATE_LIMIT_ENABLED=true
RATE_LIMIT_MAX_REQUESTS=100 # Maximum requests allowed per window
RATE_LIMIT_WINDOW_MINUTES=1 # Window size in minutes
If RATE_LIMIT_ENABLED is set to true, the server will apply rate limiting middleware. Adjust RATE_LIMIT_MAX_REQUESTS and RATE_LIMIT_WINDOW_MINUTES as needed for your environment.
The server optionally supports Sentry for error tracking, performance monitoring, and debugging. Sentry integration is completely optional and only initialized if configured.
To enable Sentry monitoring, install the optional dependency:
# Using UV (recommended)
uv sync --extra sentry
Enable Sentry by setting the SENTRY_DSN environment variable in your .env file:
# Required: Sentry DSN for your project
SENTRY_DSN=https://your-key@o12345.ingest.us.sentry.io/6789
# Optional: Performance monitoring sample rate (0.0-1.0, default: 1.0)
SENTRY_TRACES_SAMPLE_RATE=1.0
# Optional: Include personally identifiable information (default: true)
SENTRY_SEND_DEFAULT_PII=true
# Optional: Environment name (e.g., "production", "staging")
SENTRY_ENVIRONMENT=production
# Optional: Release version (auto-detected from package if not set)
SENTRY_RELEASE=1.2.2
# Optional: Profiling - continuous profiling sample rate (0.0-1.0, default: 1.0)
SENTRY_PROFILE_SESSION_SAMPLE_RATE=1.0
# Optional: Profiling - lifecycle mode for profiling (default: "trace")
# Options: "all", "continuation", "trace"
SENTRY_PROFILE_LIFECYCLE=trace
# Optional: Enable log capture as breadcrumbs and events (default: true)
SENTRY_ENABLE_LOGS=true
When enabled, Sentry automatically captures:
.env fileSentry is completely optional. If you don't set SENTRY_DSN, the server will run normally without any Sentry integration, and no monitoring data will be collected.
The server supports SSL certificate verification and custom timeout settings:
LIBRENMS_VERIFY_SSL=true # Enable SSL certificate verification
LIBRENMS_TIMEOUT=30 # Connection timeout in seconds
The server supports multiple transport mechanisms for the MCP protocol:
The default transport uses standard input/output for communication. This is ideal for local usage and integration with tools that communicate via stdin/stdout:
MCP_TRANSPORT=stdio
For network-based deployments, you can use HTTP with Server-Sent Events. This allows the MCP server to be accessed over HTTP with real-time streaming:
MCP_TRANSPORT=sse
MCP_HTTP_HOST=0.0.0.0 # Bind to all interfaces (or specific IP)
MCP_HTTP_PORT=8000 # Port to listen on
MCP_HTTP_BEARER_TOKEN=your-secret-token # Optional authentication token
When using SSE transport with a bearer token, clients must include the token in their requests:
curl -H "Authorization: Bearer your-secret-token" http://localhost:8000/sse
The HTTP Streamable transport provides HTTP-based communication with request/response streaming. This is ideal for web integrations and tools that need HTTP endpoints:
MCP_TRANSPORT=http
MCP_HTTP_HOST=0.0.0.0 # Bind to all interfaces (or specific IP)
MCP_HTTP_PORT=8000 # Port to listen on
MCP_HTTP_BEARER_TOKEN=your-secret-token # Optional authentication token
When using streamable transport with a bearer token:
curl -H "Authorization: Bearer your-secret-token" \
-H "Accept: application/json, text/event-stream" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' \
http://localhost:8000/mcp
Note: The HTTP transport requires proper JSON-RPC formatting with jsonrpc and id fields. The server may also require session initialization for some operations.
For more information on FastMCP transports, see the FastMCP documentation.
git checkout -b feature/amazing-feature)uv run pytest && uv run ruff check .)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)MIT License - see LICENSE file for details.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.