netmon-mcpd
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@netmon-mcpdlist all devices that are currently down"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Netmon MCP
Connect an AI assistant to a Netmon appliance.
Netmon ships an MCP server on the appliance itself. This repository holds the client-side bridge: a small Node process that runs on your own machine, speaks stdio to Claude Desktop, and forwards every JSON-RPC message to your Netmon's /mcp endpoint over HTTPS.
Once connected, an assistant can read your devices, interfaces, logs, flow records, alerts, and Windows-agent data by calling Netmon's tools directly — with the same sign-in and permissions as any operator, and the same tag restrictions.
Product overview: https://netmon.com/netmon-ai-assistants/
Setup guide: https://netmon.com/netmon-7-user-guide/api-and-integrations/
API reference: https://netmon.com/api-reference/authentication/
Why a local bridge
Claude connects to remote MCP servers from Anthropic's cloud infrastructure, not from your machine. A Netmon appliance on a private network is not reachable from there.
The bridge runs as a local process, so it can reach the appliance on your LAN. That is the whole reason this repository exists — and it means the supported clients are Claude Desktop and Claude Code, not claude.ai in a browser.
If your appliance is internet-facing with a publicly-trusted certificate, you can skip the bridge and point any MCP client straight at the endpoint. See Install — any MCP client below.
Related MCP server: domotz-mcp
Requirements
A Netmon appliance with the MCP server enabled (Netmon 7.0.20 or newer).
A user account with the API permission, and a personal access token carrying the
mcp:*scopes you want the assistant to have.Claude Desktop for the
.mcpbinstall. Claude Desktop supplies its own Node runtime, so nothing else is needed. Running the bridge outside Claude Desktop requires Node 18 or newer.
Install — Claude Desktop
Download
netmon-mcpd-<version>.mcpbfrom Releases. The same bundle ships with your appliance — Settings → System → Downloadables → Claude Desktop Extension.In Claude Desktop, open Settings → Extensions → Advanced settings → Extension Developer → Install Extension… and select the file.
Fill in the two settings the extension asks for:
Setting
Value
Netmon URL
https://<your-netmon>/mcp— the full endpoint, including/mcpAPI Token
a personal access token (see below). The
Bearerprefix is added for you if you leave it off.Restart the extension. Ask Claude something like "list the devices that are down" to confirm it is working.
Minting a token
In Netmon, go to Settings → Users, click the key icon on your user, and create a personal access token. Select only the scopes the assistant needs — the token cannot be widened later, and it can be revoked from the same screen at any time.
The account must hold the API permission. Without it, token minting and OAuth consent are both refused.
Install — any MCP client
The appliance serves Streamable HTTP at https://<your-netmon>/mcp (POST for JSON-RPC, GET for the server-to-client SSE stream, DELETE to end a session).
Clients that support OAuth 2.1 discover the authorization server on their own: the endpoint answers an unauthenticated request with 401 and a WWW-Authenticate: Bearer resource_metadata="…" challenge pointing at RFC 9728 protected-resource metadata, alongside RFC 8414 authorization-server metadata and dynamic client registration at /auth/register. You sign in through your browser on your own Netmon and approve the scopes on a consent page.
Clients without OAuth support pass a token directly:
{
"mcpServers": {
"netmon": {
"url": "https://netmon.example.com/mcp",
"headers": {
"Authorization": "Bearer <your-token>"
}
}
}
}Claude Code and self-signed certificates
Most appliances serve a self-signed certificate. A direct type: http entry will fail against one — the OAuth bootstrap rejects the certificate and does not consult NODE_EXTRA_CA_CERTS. Use the bridge instead, which handles the certificate itself:
{
"mcpServers": {
"netmon": {
"command": "node",
"args": ["/path/to/netmon-mcpd/server/index.js"],
"env": {
"NETMON_URL": "https://netmon.example.com/mcp",
"NETMON_TOKEN": "<your-token>"
}
}
}
}Tools
36 read tools, each wrapping a Netmon API endpoint and gated by an OAuth scope that is checked before the call runs.
Area | Scope | Example tools |
Devices & fleet |
|
|
Traffic & topology |
|
|
Logs & security |
|
|
Alerts |
|
|
Windows agent |
|
|
Live tools |
|
|
Eight scopes exist in total — the six above plus mcp:reports and mcp:system, which map to their permissions but have no tools yet.
Security model
Everything stays on your appliance. The bridge connects to the one URL you configure and nothing else. No telemetry, no vendor endpoint, no third-party service sits in the path. Netmon Services receives nothing.
Read-only. Every tool is a read. Netmon's agent write paths — killing a process, starting or stopping a Windows service, deleting a file, running PowerShell — are permanently excluded at the MCP layer, regardless of what the underlying token's permissions would otherwise allow. An assistant cannot change your monitoring configuration, acknowledge an alert, or act on a managed host.
Scoped. Each tool declares the OAuth scope it requires, and the scope is checked before the tool body runs. A token granted mcp:logs only cannot call device_list.
Yours, and no wider. A token acts as the user who minted it. Tag restrictions apply: an operator limited to the branch-offices tag gets an assistant limited to the same devices. The permission model is the one already governing the web interface and every other API client.
Revocable. Revoke a token from Settings → Users and the assistant loses access immediately. Tokens can also be scoped narrowly at mint time rather than revoked later.
Transport security
On first connection the bridge captures the appliance's TLS certificate and stores it at ~/.netmon-mcpd/<hash-of-url>.pem, then verifies every later connection against that pinned certificate. This is trust-on-first-use: it protects against interception after the first connection, not during it. Make the first connection from a network you trust.
If you replace the appliance's certificate, delete the stale pin (rm ~/.netmon-mcpd/*.pem) or the bridge will verify the new certificate against the old one and refuse to connect.
The bridge requires https://. Plain HTTP is rejected at startup.
Troubleshooting
The bridge writes a diagnostic log to ~/.netmon-mcpd/wrapper.log.
Symptom | Cause |
| The URL is |
| The appliance is unreachable on 443 from this machine, or the hostname does not resolve. |
Connects, then fails after a certificate change | Stale pin. Delete |
Tools return an authorization error | The token lacks the scope that tool requires, or the account lacks the API permission. |
No tools appear | The URL is missing the |
Building
npm install
./build.sh # or: ./build.sh 1.0.0 to stamp a versionOutput lands in build/netmon-mcpd-<version>.mcpb.
Privacy Policy
Full policy: https://netmon.com/privacy-policy/
What is collected. This bridge collects no data. It holds no account, no analytics, and no callback to Netmon Services. Two files are written locally, both under ~/.netmon-mcpd/: the pinned certificate of the appliance you configured, and a diagnostic log of connection events. Your Netmon URL and token are supplied by you and are held only in the extension's own configuration.
How data is used and stored. Queries and results pass between your MCP client and your appliance. The bridge forwards messages and retains none of them. All monitoring data stays in the appliance's database, under your control, in your building.
Third-party sharing. None. The bridge contacts exactly one host — the appliance URL you configure. It sends nothing to Netmon Services or any other party.
Note that your MCP client is a separate product with its own policy. When you ask an assistant a question, the tool results it receives are handled by that client's vendor under their terms. Netmon does not control that leg, which is why the scopes on a token are worth setting narrowly.
Retention. Local files persist until you delete them: remove the extension, or rm -rf ~/.netmon-mcpd. Revoking the token in Settings → Users ends access immediately. Retention of the monitoring data itself is configured on your appliance, by you.
Contact. support@netmon.com
Support
Documentation: https://netmon.com/documentation/
Issues with the bridge: GitHub Issues
Everything else: support@netmon.com
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceA read-only FastMCP server that enables AI assistants to query and retrieve network infrastructure information from NetBox using natural language.MIT
- AlicenseAqualityAmaintenanceMCP server for Domotz network monitoring and management. Enables AI assistants to query network devices, alerts, and topology via the Domotz API.238Apache 2.0
- AlicenseAqualityDmaintenanceMCP server enabling AI assistants to interact with your LogicMonitor, providing 125 tools for comprehensive monitoring and management operations.708012AGPL 3.0
- AlicenseAqualityDmaintenanceAn MCP server that exposes live network monitoring data as Resources and diagnostic capabilities as Tools, letting AI assistants query network health conversationally.6MIT
Related MCP Connectors
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
MCP server for AI access to Swagger by SmartBear.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Netmon-Services/netmon-mcpd'
If you have feedback or need assistance with the MCP directory API, please join our Discord server