Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Cisco Meraki Switching — port configuration, VLANs, port status, ACLs, QoS rules, port cycling. Use when configuring Meraki switch ports, creating VLANs, checking port status and PoE, troubleshooting switch connectivity, or managing Meraki ACLs and QoS
.claude/skills/automateyournetwork-meraki-switch-ops/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 27% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 19% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 41% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 343% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 161% | 0% |
https://mcp.meraki.com/mcp (remote HTTP, no local install)MERAKI_DASHBOARD_API_KEY — use a read-only dashboard keysemantic_search (discover) and execute_api (invoke)All 431 mutating Meraki operations (174 POST, 186 PUT, 71 DELETE) are absent from the capability catalogue. Only non-deprecated GETs are built in, so updateNetwork, rebootDevice, blinkDeviceLeds and friends return Capability not found.
Do not attempt writes and do not offer them. There is no ServiceNow CR path here because there is nothing to gate — a change must be made in the Meraki dashboard directly.
Two capability IDs may be called directly; everything else must be discovered:
execute_api → getOrganizations — find accessible org IDsexecute_api → getOrganizationNetworks — find network IDs in the chosen orgsemantic_search → describe the intent in words → returns ranked capability_idsexecute_api → the chosen capability_id + its required parametersDiscover, do not guess. An earlier version of this skill hardcoded 80 method names and 54 of them did not exist in the Meraki API at all — they failed regardless of server. semantic_search is the guard against that: it can only return IDs that exist.
execute_api returns a single page. Request a bounded page size whensupported, and never present a page as the complete dataset.
n=0 means this network reported none, never none exist.Live proof from a real sandbox org: getOrganizationDevices returns 0 devices while the same org has a fully configured network with 15 SSIDs.
| Error | Meaning | Fix | |---|---|---| | Capability not found | ID is mutating, deprecated, or invented | semantic_search for a real one | | Resource not found | valid ID, wrong org/network/serial | re-derive the ID from step 1–2 | | Invalid parameters | valid ID, missing a required parameter | read the capability's parameters |
Never report any of the three as "no data" — none of them mean that.
| Capability ID | Verified result | |---|---| | getNetworkSwitchAccessControlLists | 1 ACL set on a real network |
There are 50 real switch capabilities. The ones you will reach for most: getDeviceSwitchPorts, getDeviceSwitchPortsStatuses, getDeviceSwitchPortsStatusesPackets, getNetworkSwitchAccessPolicies, getNetworkSwitchRoutingMulticast, getDeviceSwitchRoutingInterfaces, getDeviceSwitchRoutingStaticRoutes, getDeviceSwitchWarmSpare. Confirm each with semantic_search before calling.
Port capabilities are per-device and need a serial, not a network ID. Get serials from getOrganizationDevices (org-wide) — and note that an org with 0 devices returns 0 serials, which is not the same as "the switches have no ports".
getOrganizations → getOrganizationNetworks → getOrganizationDevicesgetDeviceSwitchPorts — VLAN, type, PoE, STP guard, isolationgetDeviceSwitchPortsStatuses — link state, speed, duplex, errors, discardsgetNetworkSwitchAccessControlLists and getNetworkSwitchAccessPolicies — ACL/802.1XgetDeviceSwitchPortsStatuses — identify ports with errors or discardsgetDeviceSwitchPortsStatusesPackets — packet-level breakdown per portsemantic_search "switch port cable test results" — physical-layer evidencegetDeviceLossAndLatencyHistory via meraki-monitoringdifferent fixes, and conflating them is the usual wrong answer here.
| Skill | How They Work Together | |-------|----------------------| | meraki-network-ops | Network and device inventory for switch discovery | | meraki-monitoring | Loss/latency history and live tools for switch uplinks | | meraki-security-appliance | Trace a VLAN from switch port to firewall rule | | gait-session-tracking | Record all switch audits |
MERAKI_DASHBOARD_API_KEY — Meraki Dashboard API key (read-only recommended)Other measured skills in the registry, with their headline benchmark lift.