Cisco Switch MCP Server
Provides tools for managing Cisco network devices, including CBS220 switches via CLI/SSH, Catalyst Center and Meraki Dashboard APIs, enabling retrieval of device information, interface status, VLANs, MAC address table, running configuration, and interface statistics.
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., "@Cisco Switch MCP Servershow interface status for cbs220-office"
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.
Cisco Switch MCP Server
Adapter-driven MCP server for Cisco CBS220 switches, Catalyst Center/DNA Center, and Meraki Dashboard. Callers provide only device_id; the adapter is selected from inventory.yaml.
Status: initial lab/read-only release. Do not enable write operations in production until they pass review and lab validation.
Features
CBS220/no-REST-API path: SSH/CLI through Netmiko
Catalyst Center and Meraki API adapter structure
Shared Pydantic schemas for all adapters
Six read-only MCP tools
Dry-run and explicit confirmation gate for write tools
Per-device SSH concurrency limit
Audit logging for write requests
Related MCP server: Meraki MCP Server
Install
cd "D:\MCP\mcp cisco"
py -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -e ".[cli,dev]"
Copy-Item inventory.example.yaml inventory.yaml
$env:PYTHONPATH = "D:\MCP\mcp cisco\src"
$env:INVENTORY_FILE = "D:\MCP\mcp cisco\inventory.yaml"Configure a real CBS220
Create a dedicated least-privilege account for MCP, enable SSH, and restrict access to the management network. Never commit credentials.
devices:
- id: cbs220-office
host: 10.10.10.20
vendor: cisco
model: CBS220-48T-4G
adapter: cli
cli:
device_type: cisco_s300
username_env: SWITCH_USER
password_env: SWITCH_PASSWORD
port: 22
max_sessions: 2Set credentials only in the process environment:
$env:SWITCH_USER = "mcp-readonly"
$env:SWITCH_PASSWORD = "your-secret"
Test-NetConnection 10.10.10.20 -Port 22
ssh mcp-readonly@10.10.10.20cisco_s300 is the initial Netmiko driver choice and must be verified with the exact CBS220 firmware in a lab. Change device_type if required.
Test Netmiko before MCP
python -c "from netmiko import ConnectHandler; import os; c=ConnectHandler(device_type='cisco_s300',host='10.10.10.20',username=os.environ['SWITCH_USER'],password=os.environ['SWITCH_PASSWORD'],port=22); print(c.send_command('show system')); c.disconnect()"The CLI adapter currently uses these CBS220 commands: show system, show interfaces status, show vlan, show mac address-table, show running-config, and show interfaces counters. They are based on the Cisco 220 Series CLI Reference Guide.
Catalyst Center and Meraki
Use the catalyst_center or meraki adapter entries in inventory.example.yaml. Set the API token through the environment variable named by token_env. Update endpoint mappings in adapters.py to match the exact OpenAPI/API version deployed by your organization; the example mappings are intentionally generic and must be validated before production use.
Run the MCP server
python -m cisco_switch_mcp.serverRun the MCP Inspector against a lab only:
npx @modelcontextprotocol/inspector python -m cisco_switch_mcp.serverRead-only tools:
get_device_info(device_id="cbs220-office")
get_interface_status(device_id="cbs220-office")
get_vlan_list(device_id="cbs220-office")
get_mac_address_table(device_id="cbs220-office")
get_running_config(device_id="cbs220-office")
get_interface_stats(device_id="cbs220-office")Dry-run example:
set_port_vlan({device_id:"cbs220-office", interface:"Gi1", vlan_id:20, dry_run:true})The v0.1 CLI write path intentionally rejects real apply operations until commands are validated in a lab. Future apply calls must use dry_run=false and confirmation="CONFIRM".
Verification checklist
python -m compileall -q srcBefore production:
Test against a lab switch or simulator.
Verify Netmiko driver and command output for the exact firmware.
Add SNMP polling and parser fixture tests.
Align Catalyst Center/Meraki endpoints with official OpenAPI specs.
Use a secret manager and least-privilege accounts.
Apply TLS/certificate and network access policies.
Enable write operations only after code review and change approval.
Evaluation questions
Show model and firmware for
cbs220-lab.Which ports on
cbs220-labare down?List configured VLANs.
Find MAC
0011.2233.4455.Retrieve the running config.
Find the interface with the most input errors.
Query the Catalyst Center device inventory.
Show interface status from Catalyst Center.
Query VLANs from Meraki.
Preview changing
Gi1/0/10to VLAN 20 without applying it.
Security
Do not commit .env, inventory.yaml, API keys, passwords, production exports, or raw configs. Review audit logs for sensitive data before forwarding them to an LLM. Use lab devices for all write testing.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/humyai99/mcp-cisco'
If you have feedback or need assistance with the MCP directory API, please join our Discord server