Meraki Network Operations (read-only)
MCP Server
- Server: Cisco's official Meraki MCP — developer.cisco.com
- Endpoint:
https://mcp.meraki.com/mcp (remote HTTP, no local install)
- Self-host fallback: CiscoDevNet/cisco-meraki-mcp-official (Apache-2.0)
- Requires:
MERAKI_DASHBOARD_API_KEY — use a read-only dashboard key
- Tools: exactly two —
semantic_search (discover) and execute_api (invoke)
Read-only, structurally
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.
How to call it
Two capability IDs may be called directly; everything else must be discovered:
execute_api → getOrganizations — find accessible org IDs
execute_api → getOrganizationNetworks — find network IDs in the chosen org
semantic_search → describe the intent in words → returns ranked capability_ids
execute_api → the chosen capability_id + its required parameters
Discover, 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.
Reading results honestly
One page only. execute_api returns a single page. Request a bounded page size when
supported, and never present a page as the complete dataset.
Empty is not absent. 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.
Three distinct errors, three different fixes:
| 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.
This is the entry point
Every other Meraki skill needs an org ID and a network ID. Those come from the only two
capability IDs Cisco documents as directly callable:
execute_api capability_id=getOrganizations
execute_api capability_id=getOrganizationNetworks organizationId=<from step 1>
Verified capabilities
Live-verified against a real org:
| Capability ID |
Verified result |
getOrganizations |
1 org — id, name, licensing model, cloud region |
getOrganizationNetworks |
1 network — branch_office (appliance, camera, switch, wireless) |
getOrganizationAdmins |
2 admins |
getOrganizationLicensesOverview |
co-term licensing |
getOrganizationSaml |
SAML config |
getNetworkSettings |
5 network settings |
getNetworkAlertsSettings |
3 alert settings |
getOrganizationDevices |
0 |
getOrganizationInventoryDevices |
0 |
getNetworkClients |
0 |
getNetworkGroupPolicies |
0 |
Read the bottom four rows carefully. This org has zero devices, zero inventory, zero
clients and zero group policies — while holding a fully configured four-product network
with 15 SSIDs and live firewall rules. That is the single most important fact in this
skill: a configured network can report nothing at all.
Workflow: Discovery
getOrganizations — record every org ID and name
getOrganizationNetworks per org — record network IDs and productTypes
getOrganizationDevices — the device inventory
- Report the counts you actually got, including zeros, before answering anything else.
Downstream skills need to know whether they are working from data or from an empty org.
Workflow: Network inventory report
- Discovery, as above
getNetworkSettings and getNetworkAlertsSettings per network
getNetworkGroupPolicies — policy objects, if any
getOrganizationAdmins — who can change this org
getOrganizationLicensesOverview — licence model, expiry, device entitlement
productTypes per network tells you which sibling skill applies: wireless →
meraki-wireless-ops, switch → meraki-switch-ops, appliance →
meraki-security-appliance
Important Rules
- No writes exist. Network and org changes go through the dashboard.
- Report zeros explicitly. "0 devices" is a finding and must be stated, never smoothed
over or filled in from the network's configuration.
productTypes drives which skill to hand off to — do not run wireless workflows
against a network without wireless.
- One page only on
getOrganizationNetworks and getNetworkClients for large orgs.
- Record in GAIT — log every discovery run.
Integration with Other Skills
| Skill |
How They Work Together |
meraki-wireless-ops |
Hand off networks with productType wireless |
meraki-switch-ops |
Hand off networks with productType switch |
meraki-security-appliance |
Hand off networks with productType appliance |
meraki-monitoring |
Health and change history once IDs are known |
gait-session-tracking |
Record all discovery runs |
Environment Variables
MERAKI_DASHBOARD_API_KEY — Meraki Dashboard API key (read-only recommended)
1---2name: meraki-network-ops3description: Cisco Meraki organization and network operations (read-only) — org discovery, network inventory, device inventory, clients, group policies, admins, licensing, alert settings via Cisco's official Meraki MCP. Use as the entry point for any Meraki question, to discover org and network IDs, or to inventory Meraki networks and devices4license: Apache-2.05---6
7# Meraki Network Operations (read-only)
8
9## MCP Server
10
11- **Server**: Cisco's **official** Meraki MCP — [developer.cisco.com](https://developer.cisco.com/meraki/api-v1/mcp-server/)
12- **Endpoint**: `https://mcp.meraki.com/mcp` (remote HTTP, no local install)
13- **Self-host fallback**: [CiscoDevNet/cisco-meraki-mcp-official](https://github.com/CiscoDevNet/cisco-meraki-mcp-official) (Apache-2.0)
14- **Requires**: `MERAKI_DASHBOARD_API_KEY` — use a **read-only** dashboard key
15- **Tools**: exactly two — `semantic_search` (discover) and `execute_api` (invoke)
16
17## Read-only, structurally
18
19All 431 mutating Meraki operations (174 POST, 186 PUT, 71 DELETE) are **absent from the
20capability catalogue**. Only non-deprecated GETs are built in, so `updateNetwork`,
21`rebootDevice`, `blinkDeviceLeds` and friends return `Capability not found`.
22
23Do not attempt writes and do not offer them. There is no ServiceNow CR path here because
24there is nothing to gate — a change must be made in the Meraki dashboard directly.
25
26## How to call it
27
28Two capability IDs may be called directly; everything else must be discovered:
29
301. `execute_api` → `getOrganizations` — find accessible org IDs
312. `execute_api` → `getOrganizationNetworks` — find network IDs in the chosen org
323. `semantic_search` → describe the intent in words → returns ranked `capability_id`s
334. `execute_api` → the chosen `capability_id` + its required parameters
34
35**Discover, do not guess.** An earlier version of this skill hardcoded 80 method names and
36**54 of them did not exist in the Meraki API at all** — they failed regardless of server.
37`semantic_search` is the guard against that: it can only return IDs that exist.
38
39## Reading results honestly
40
41- **One page only.** `execute_api` returns a single page. Request a bounded page size when
42 supported, and never present a page as the complete dataset.
43- **Empty is not absent.** `n=0` means *this network reported none*, never *none exist*.
44 Live proof from a real sandbox org: `getOrganizationDevices` returns **0 devices** while
45 the same org has a fully configured network with **15 SSIDs**.
46- **Three distinct errors, three different fixes:**
47
48 | Error | Meaning | Fix |
49 |---|---|---|
50 | `Capability not found` | ID is mutating, deprecated, or invented | `semantic_search` for a real one |
51 | `Resource not found` | valid ID, wrong org/network/serial | re-derive the ID from step 1–2 |
52 | `Invalid parameters` | valid ID, missing a required parameter | read the capability's parameters |
53
54 Never report any of the three as "no data" — none of them mean that.
55
56## This is the entry point
57
58Every other Meraki skill needs an org ID and a network ID. Those come from the only two
59capability IDs Cisco documents as directly callable:
60
61```
62execute_api capability_id=getOrganizations
63execute_api capability_id=getOrganizationNetworks organizationId=<from step 1>
64```
65
66## Verified capabilities
67
68Live-verified against a real org:
69
70| Capability ID | Verified result |
71|---|---|
72| `getOrganizations` | 1 org — id, name, licensing model, cloud region |
73| `getOrganizationNetworks` | 1 network — `branch_office` (appliance, camera, switch, wireless) |
74| `getOrganizationAdmins` | 2 admins |
75| `getOrganizationLicensesOverview` | co-term licensing |
76| `getOrganizationSaml` | SAML config |
77| `getNetworkSettings` | 5 network settings |
78| `getNetworkAlertsSettings` | 3 alert settings |
79| `getOrganizationDevices` | **0** |
80| `getOrganizationInventoryDevices` | **0** |
81| `getNetworkClients` | **0** |
82| `getNetworkGroupPolicies` | **0** |
83
84Read the bottom four rows carefully. **This org has zero devices, zero inventory, zero
85clients and zero group policies — while holding a fully configured four-product network
86with 15 SSIDs and live firewall rules.** That is the single most important fact in this
87skill: a configured network can report nothing at all.
88
89## Workflow: Discovery
90
911. `getOrganizations` — record every org ID and name
922. `getOrganizationNetworks` per org — record network IDs and `productTypes`
933. `getOrganizationDevices` — the device inventory
944. **Report the counts you actually got**, including zeros, before answering anything else.
95 Downstream skills need to know whether they are working from data or from an empty org.
96
97## Workflow: Network inventory report
98
991. Discovery, as above
1002. `getNetworkSettings` and `getNetworkAlertsSettings` per network
1013. `getNetworkGroupPolicies` — policy objects, if any
1024. `getOrganizationAdmins` — who can change this org
1035. `getOrganizationLicensesOverview` — licence model, expiry, device entitlement
1046. `productTypes` per network tells you which sibling skill applies: `wireless` →
105 `meraki-wireless-ops`, `switch` → `meraki-switch-ops`, `appliance` →
106 `meraki-security-appliance`
107
108## Important Rules
109
110- **No writes exist.** Network and org changes go through the dashboard.
111- **Report zeros explicitly.** "0 devices" is a finding and must be stated, never smoothed
112 over or filled in from the network's configuration.
113- **`productTypes` drives which skill to hand off to** — do not run wireless workflows
114 against a network without `wireless`.
115- **One page only** on `getOrganizationNetworks` and `getNetworkClients` for large orgs.
116- **Record in GAIT** — log every discovery run.
117
118## Integration with Other Skills
119
120| Skill | How They Work Together |
121|-------|----------------------|
122| `meraki-wireless-ops` | Hand off networks with productType `wireless` |
123| `meraki-switch-ops` | Hand off networks with productType `switch` |
124| `meraki-security-appliance` | Hand off networks with productType `appliance` |
125| `meraki-monitoring` | Health and change history once IDs are known |
126| `gait-session-tracking` | Record all discovery runs |
127
128## Environment Variables
129
130- `MERAKI_DASHBOARD_API_KEY` — Meraki Dashboard API key (**read-only** recommended)