Meraki MCP Server
Provides tools for interacting with the Cisco Meraki Dashboard API, enabling management of organizations, networks, devices, firmware upgrades, and licenses with role-based access control.
Click on "Install 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., "@Meraki MCP ServerList my organizations and networks"
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.
Meraki MCP Server
A Model Context Protocol (MCP) server that exposes a curated subset of the Cisco Meraki Dashboard API to MCP-aware clients (e.g., Cursor, Claude Desktop). It provides role-based access to ensure safe and scoped operations.
Features
Role-based access control (noc | sysadmin | all)
OpenAPI-driven tool generation (using the bundled spec)
Global schema validation bypass to tolerate Meraki
nullvalues (prevents "None is not of type 'string'")Simple configuration via environment variables
Related MCP server: Meraki MCP Server
Requirements
Python 3.10+
A Meraki Dashboard API key with appropriate org access
Optional:
uvfor reproducible Python environments (recommended)
Install
Option A: Using uv (recommended)
# 1) Install uv if needed
curl -LsSf https://astral.sh/uv/install.sh | sh
# 2) From project root
cd /path/to/your/meraki-mcp-server
# 3) Create and sync the environment based on pyproject.toml / uv.lock
uv syncOption B: Using pip (fallback)
# 1) Create a virtual environment
python3 -m venv .venv
source .venv/bin/activate
# 2) Install dependencies
pip install fastmcp httpx jsonschemaConfigure
Set environment variables (you can export them in your shell or supply via your MCP client config):
MERAKI_KEY(required): Your Meraki Dashboard API keyMCP_ROLE(optional): One ofnoc,sysadmin,all(defaults tonoc)MERAKI_BASE_URL(optional): Defaults tohttps://api.meraki.com/api/v1
Example (macOS/Linux):
export MERAKI_KEY="<your-meraki-api-key>"
export MCP_ROLE="noc" # or sysadmin | allQuick Run (smoke test)
You can quickly validate the server starts locally (even outside an MCP client):
# Using uv
uv run python meraki_mcp_server.py
# Or with plain Python (ensure venv is active)
python3 meraki_mcp_server.pyThis will start the MCP server process. Typically, you run this via an MCP client over stdio.
Windows (PowerShell)
# Create and activate a virtual environment
python -m venv .venv
.\.venv\Scripts\Activate.ps1
# Run the server
python meraki_mcp_server.pyMCP Client Configuration
Below is an example mcp_server_config.json entry you can adapt in your MCP client (e.g., Cursor, Claude Desktop). Ensure you replace the directory path with your actual project location.
{
"Meraki-MCP-Server": {
"command": "uv",
"env": {
"MERAKI_KEY": "${MERAKI_KEY}",
"MERAKI_BASE_URL": "https://api.meraki.com/api/v1",
"MCP_ROLE": "noc",
"_comment": "Set MERAKI_KEY in your shell env. MCP_ROLE values: noc | sysadmin | all"
},
"args": [
"--directory",
"/path/to/yourMCPdirector/meraki-mcp-server",
"run",
"python",
"meraki_mcp_server.py",
"stdio"
]
}
}Notes:
The
${MERAKI_KEY}placeholder means your MCP client will inherit the key from your shell environment.stdioat the end ensures the server communicates over standard I/O as MCP expects.If you do not use
uv, replacecommandandargsaccordingly to invoke your Python environment.
Roles and Allowed Endpoints
The server uses route maps to constrain access:
noc(default):GET
/organizationsGET
/organizations/{orgId}/networksGET
/organizations/{orgId}/devicesGET
/organizations/{orgId}/firmware/upgradesGET
/organizations/{orgId}/licenses/overviewPUT
/networks/{networkId}/firmwareUpgradesAll other endpoints are blocked
sysadmin:Same read endpoints as
noc, but with PUT operations blocked (read-only)
all:Firehose mode. All endpoints allowed (use with caution)
You can switch roles by setting MCP_ROLE before launching the server.
Validation Behavior
Meraki may return null for some fields the official schema marks as strings. To avoid frequent validation errors (e.g., None is not of type 'string'), this server disables JSON schema output validation globally. This keeps tools responsive and avoids brittle schema mismatches.
If you prefer strict validation, remove the monkey patch in meraki_mcp_server.py and update the OpenAPI spec to mark nullable string fields explicitly.
Security
Never commit your API key. Use environment variables.
Limit the server’s accessible endpoints by using the appropriate role.
Consider running this behind a process supervisor and restricting filesystem/network access where appropriate.
Troubleshooting
Import errors (e.g., RouteType vs MCPType): This project is pinned to the FastMCP API compatible with
MCPType. If your local FastMCP differs, install the version specified inpyproject.toml/uv.lock.Validation errors: By design, validation is disabled to tolerate Meraki
nulls. If you still see validation errors, ensure you’re running the currentmeraki_mcp_server.py.
License
MIT (or your preferred license)
Files of interest
meraki_mcp_server.py: Main MCP server implementation and role routing.mcp_server_config.json: Example MCP client configuration for launching the server.openapi/spec3.json: Meraki OpenAPI specification used to generate tools.
If you'd like, I can also update mcp_server_config.json with a filled example using your local paths and environment variables.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP (Model Context Protocol) server that enables interaction with the Cisco Meraki Dashboard API, allowing users to manage Meraki networks, devices, and configurations through natural language.
- Alicense-qualityFmaintenanceEnables interaction with the Meraki Dashboard API for LLMs, allowing seamless integration of Meraki network management capabilities within an AI assistant's conversational interface.1MIT
- Alicense-qualityCmaintenanceEnables AI assistants to manage Cisco Meraki networks through natural language, including organizations, networks, devices, switches, wireless, and appliances.1GPL 3.0
- Alicense-qualityBmaintenanceA read-only MCP server for Cisco Meraki Dashboard, enabling LLMs to discover devices, check health, troubleshoot, and generate reports via natural language.MIT
Related MCP Connectors
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dipeshmaindolia001/meraki-mcp-server-testing'
If you have feedback or need assistance with the MCP directory API, please join our Discord server