Install
$ agentstack add skill-wyre-technology-msp-claude-plugins-networks ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Auvik Networks and Interfaces
A network in Auvik is an IP scope - typically a subnet that Auvik has discovered devices on. An interface is a port on a device. Both are distinct entity types with their own list endpoints. This skill clarifies the data model and the relationships.
Tools
| Tool | Use For | |------|---------| | auvik_networks_list | List networks for a tenant | | auvik_networks_get | Detail for one network | | auvik_interfaces_list | List interfaces for a tenant |
Network Entity
Fields you'll see:
networkName- usually the subnet in CIDR formnetworkType-private,internet,unknownscanStatus- whether discovery scans for this network are healthygatewayIp,dhcpEnableddescription- free-form, often blank
Networks are not VLANs in the Auvik model - VLAN information lives on interface records and switch configurations. A single VLAN typically maps to a single network, but the network entity is keyed on subnet, not VLAN ID.
Interface Entity
Fields you'll see:
interfaceName- e.g.GigabitEthernet1/0/24interfaceType-ethernet,wireless,virtual,loopback,tunnel, etc.adminStatus-upordown- operator-setoperStatus-upordown- actual current statelinkSpeed- in bpsparentDeviceId- the device that owns the interfacedescription- administrator-set port description (when populated)
adminStatus vs operStatus
| adminStatus | operStatus | Meaning | |-------------|------------|---------| | up | up | Healthy | | up | down | Link down - real condition (flap, cable, upstream) | | down | down | Administratively shut down - usually deliberate | | up | testing | In test mode - transient |
A flapping interface will move between up and down on operStatus while adminStatus stays up. Capacity and statistics tools only return useful data for up/up interfaces.
Relationships
- Interface -> Device via
parentDeviceId->auvik_devices_get - Device -> Networks via the device's IP addresses (in
auvik_devices_get_details) - Network -> Devices via the address scope - a device with an IP in the network's range belongs to that network
There is no direct "list devices in this network" call - you list devices, list networks, and join on IP membership client-side.
Common Workflows
Network footprint of a tenant
auvik_networks_list- count, list IP ranges.- Note
scanStatusfor each - any in error state is a discovery problem.
Find flapping interfaces
auvik_interfaces_listfor the tenant.- Filter
adminStatus = up,operStatus = down. - Resolve owning device via
parentDeviceId. - Pull
auvik_statistics_interfaceover a short window to see flap frequency.
Cross-reference an alert to an interface and device
- Alert references
entityIdwithentityType = interface. - The interface record has
parentDeviceId. auvik_devices_geton the parent for the human-readable context.
Edge Cases
- Virtual interfaces (SVIs, port-channels, tunnels) appear in
auvik_interfaces_listalongside physical ones. TheirinterfaceTypedistinguishes them. For capacity reporting, excludeinterfaceType in {loopback, tunnel, virtual}unless the question is specifically about them. - Some devices expose hundreds of interfaces (large modular switches) - paginate aggressively.
linkSpeedis 0 for down interfaces on some platforms - guard against divide-by-zero in utilization math.
Related Skills
- [devices](../devices/SKILL.md)
- [alerts](../alerts/SKILL.md)
- [api-patterns](../api-patterns/SKILL.md)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: wyre-technology
- Source: wyre-technology/msp-claude-plugins
- License: Apache-2.0
- Homepage: https://mcp.wyre.ai/getting-started/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.