Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Cisco Meraki Security Appliance (MX) — firewall rules, site-to-site VPN, content filtering, traffic shaping, security events. Use when auditing Meraki MX firewall rules, troubleshooting site-to-site VPN tunnels, managing content filtering, or investigating Meraki security events and IDS alerts
.claude/skills/automateyournetwork-meraki-security-appliance/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 14% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 113% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 21% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 23% | 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.
Live-verified against a real branch_office network with an appliance:
| Capability ID | Verified result | |---|---| | getNetworkApplianceFirewallL3FirewallRules | L3 rules present | | getNetworkApplianceFirewallSettings | firewall settings present | | getNetworkApplianceContentFiltering | 3 content-filtering fields | | getNetworkApplianceTrafficShaping | traffic-shaping config present | | getNetworkApplianceVlans | Invalid parameters — needs appliance VLANs enabled first |
There are 74 real appliance capabilities. Also useful: getNetworkApplianceFirewallL7FirewallRules, getNetworkApplianceFirewallCellularFirewallRules, getNetworkApplianceFirewallInboundFirewallRules, getNetworkApplianceSecurityMalware, getNetworkApplianceClientSecurityEvents, getNetworkApplianceVpnSiteToSiteVpn, getNetworkApplianceContentFilteringCategories. Confirm with semantic_search.
getOrganizations → getOrganizationNetworks → pick the appliance networkgetNetworkApplianceFirewallL3FirewallRules — the L3 rule set, in ordergetNetworkApplianceFirewallL7FirewallRules — application-layer rulesgetNetworkApplianceFirewallSettings — spoofing protection and defaultsgetNetworkApplianceContentFiltering — blocked categories and URL patternsthan no list, because first-match wins and the reader will draw the wrong conclusion.
Rule order matters and there is a default rule you did not fetch. Meraki applies a final implicit rule; say so rather than implying the fetched list is exhaustive.
getNetworkApplianceSecurityIntrusion — IDS/IPS mode and rulesetgetNetworkApplianceSecurityMalware — AMP enablementgetNetworkApplianceClientSecurityEvents — observed events (one page only)getNetworkApplianceVpnSiteToSiteVpn — VPN mode, hubs, exported subnetsit may mean nothing was seen, the window was short, or logging is off.
dashboard. There is no CR to raise here because there is no write path to gate.
| Skill | How They Work Together | |-------|----------------------| | meraki-network-ops | Network context and VLAN topology for rule interpretation | | meraki-switch-ops | Trace a VLAN from firewall rule back to switch port | | fortinet-firewall-ops | Compare Meraki MX policy against FortiGate policy | | gait-session-tracking | Record all firewall audits |
MERAKI_DASHBOARD_API_KEY — Meraki Dashboard API key (read-only recommended)Other measured skills in the registry, with their headline benchmark lift.