Skip to main content
Glama

NetOps MCP Server

A Model Context Protocol (MCP) server providing structured, bottom-up network diagnostics (OSI Layers 1–3) for client-side environments. Bridges host network telemetry directly into LLM clients (such as Claude Desktop) via standard stdio transport.

Architecture

 Claude Desktop (Host)
       │
       ▼ (stdio via WSL bridge)
 MCP Runtime (server.py)
   ├── Tools:
   │    ├── get_wifi_telemetry (L1/L2 via netsh.exe)
   │    ├── run_ping           (L3 RTT & packet loss)
   │    └── lookup_remediation (Runbook query engine)
   ├── Resources:
   │    └── netops://runbooks/wifi-triage (Standards-backed runbook)
   └── Prompts:
        └── triage_network     (Automated bottom-up diagnostic agent)

Related MCP server: connectivity-diagnostics

Setup & Installation

  1. Clone repository & enter environment:

    git clone https://github.com/drew-1618/netops-mcp.git
    cd netops-mcp
    python3 -m venv .venv
    source .venv/bin/activate
    pip install -r requirements.txt
  2. Run via MCP Inspector (Development):

    mcp dev src/server.py
  3. Claude Desktop Integration: Add the following block to your claude_desktop_config.json:

    "mcpServers": {
        "netops": {
        "command": "wsl.exe",
        "args": [
            "bash",
            "-c",
            "cd /absolute/path/to/netops-mcp && .venv/bin/python src/server.py"
        ]
        }
    }

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides AI assistants with direct access to multi-vendor network devices for tasks like configuration management, health checks, and topology discovery through 35 specialized tools. It enables natural language control over platforms including Cisco, Juniper, and Nokia using SSH, NETCONF, and SNMP protocols.
    11
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to debug local networks in plain language by pinging, sweeping subnets, tracing routes, resolving DNS, scanning ports, inspecting ARP tables and active connections, and checking URL reachability.
    MIT