NetOps MCP Server
Click on "Deploy 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., "@NetOps MCP ServerMy Wi-Fi keeps disconnecting—run diagnostics and suggest fixes."
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.
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
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.txtRun via MCP Inspector (Development):
mcp dev src/server.pyClaude 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" ] } }
This server cannot be deployed
Maintenance
Related MCP Connectors
Provides capabilities that let LLM agents perform a range of infrastructure management tasks.
Protocol-native energy infrastructure orchestration for AI data centers. Provides 46 MCP tools across 8 grid protocols (IEC-61850, DNP3, Modbus, OCPP, OpenADR, IEEE 2030.5, IEC 60870-5-104, ICCP) with 5 core API primitives: connect, dispatch, settle, comply, and intel. Enables AI agents to programmatically interact with substations, grid interfaces, and energy assets for real-time workload-grid coordination.
Agent-readiness scanner (0-5 score), robots.txt + llms.txt generators, managed agent enablement.
LLM Orchestration Observability Agent
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides 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.11MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to perform real network diagnostics on the local machine, including ping, traceroute, DNS lookups, TLS checks, and more.MIT
- AlicenseNot gradedqualityCmaintenanceEnables 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
- AlicenseNot gradedqualityCmaintenanceEnables LLM agents to triage network incidents by fetching device telemetry, inspecting syslogs, and executing traffic reroutes through MCP tools.MIT