Cisco Meraki for VS Code
io.github.wyre-technology/meraki-mcp
MCP server for the Cisco Meraki Dashboard: networks, devices, wireless, switch, appliance.
client:VS Code
transport:stdio
runtime:oci
Install Cisco Meraki in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "meraki-api-key",
"description": "MERAKI_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "meraki-org-id",
"description": "MERAKI_ORG_ID",
"password": true
},
{
"type": "promptString",
"id": "meraki-base-url",
"description": "MERAKI_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "read-only-mode",
"description": "READ_ONLY_MODE",
"password": true
},
{
"type": "promptString",
"id": "mcp-transport",
"description": "MCP_TRANSPORT",
"password": true
},
{
"type": "promptString",
"id": "auth-mode",
"description": "AUTH_MODE",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"meraki-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/meraki-mcp:v1.1.3"
],
"env": {
"MERAKI_API_KEY": "${input:meraki-api-key}",
"MERAKI_ORG_ID": "${input:meraki-org-id}",
"MERAKI_BASE_URL": "${input:meraki-base-url}",
"READ_ONLY_MODE": "${input:read-only-mode}",
"MCP_TRANSPORT": "${input:mcp-transport}",
"AUTH_MODE": "${input:auth-mode}",
"LOG_LEVEL": "${input:log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs