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.
Available Tools
9 toolsenable_interfaceBDestructive
Preview/apply interface enable. Apply requires explicit confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide destructiveHint=true. The description adds that apply requires explicit confirmation, which is key behavioral context. However, it does not explain the interplay between dry_run and confirmation parameters, nor other potential side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, very concise and front-loaded. While efficient, it could be slightly expanded to cover parameter details without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
As a destructive tool with four parameters and no output schema, the description lacks guidance on parameter usage, expected return values, and prerequisites. It is insufficient for an agent to use the tool correctly without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%. The description only mentions 'Preview/apply' and 'confirmation', providing minimal additional meaning. It does not clarify dry_run's role (e.g., default true) or what confirmation string is expected.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Preview/apply interface enable' which clearly identifies the verb (enable) and resource (interface) and distinguishes between preview and apply modes. However, it does not specify what enabling an interface means (e.g., administratively enable).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies that apply requires a confirmation, hinting at usage context (preview vs. apply). But it does not explicitly guide when to use this tool over siblings like shutdown_interface or set_port_vlan.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_device_infoARead-only
Return model, software version, uptime and selected adapter for a device.
| Name | Required | Description | Default |
|---|---|---|---|
| device_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true. The description adds value by specifying exactly what data is returned (model, version, uptime, adapter), going beyond the annotation. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single concise sentence that directly states the tool's output. No unnecessary words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given low complexity (1 param, no nested objects, no output schema), the description adequately covers the tool's purpose and return fields. It lacks details on data types or structure, but the listed fields provide sufficient context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description must compensate. However, it only implies the device_id parameter by mentioning 'for a device' without describing its format, type, or usage (e.g., IP, hostname, ID).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool returns device-specific fields (model, software version, uptime, selected adapter). Distinguishes itself from sibling tools like get_interface_status or get_vlan_list by focussing on device-level information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage when needing device details, but provides no explicit guidance on when to use or avoid this tool compared to siblings, nor any prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_interface_statsBRead-only
Return interface traffic and error counters.
| Name | Required | Description | Default |
|---|---|---|---|
| device_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, and the description 'Return' is consistent. No additional behavioral traits (e.g., permissions, rate limits) are disclosed. The description adds no value beyond the annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence, front-loaded with the verb and object, using no wasted words. It is appropriately concise for the simplicity of the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple nature (1 param, no output schema), the description covers the core purpose. However, it fails to describe the return format or any limitations, which would be helpful for an agent. It is minimally adequate but not thorough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The sole parameter 'device_id' has no description in either the schema or the tool description. The schema coverage is 0%, and the description does not clarify what format (IP, hostname, etc.) or context is expected. This leaves the agent guessing.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies exactly what the tool does: 'Return interface traffic and error counters.' This clearly distinguishes it from siblings like get_interface_status (status only) and get_device_info (general info), making the tool's purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly indicates use when interface traffic/error stats are needed, but provides no explicit guidance on when to use alternatives or when not to use this tool. Sibling tools exist, but no comparison is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_interface_statusARead-only
Return operational state for all interfaces.
| Name | Required | Description | Default |
|---|---|---|---|
| device_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, so description doesn't need to restate safety. However, it doesn't disclose any other behavioral details (e.g., error handling, authentication). Adequate given annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, front-loaded with the action and resource. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with one parameter and no output schema, the description is mostly complete. It could mention what operational state includes, but not required given the simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and description does not mention the device_id parameter at all. The agent only gets the parameter name and type from the schema, missing context on what device_id represents.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'Return' and the resource 'operational state for all interfaces'. Distinguishes from siblings like get_interface_stats (statistics vs. state) and get_device_info (device info vs. interface states).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives like get_interface_stats or set_port_vlan. The description only states what it does without context on appropriate use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_mac_address_tableCRead-only
Return learned MAC addresses and ports.
| Name | Required | Description | Default |
|---|---|---|---|
| device_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotation readOnlyHint=true already indicates a safe read operation. The description adds 'Return learned MAC addresses and ports' but no additional behavioral context (e.g., what happens if the device is unreachable, or if the table is empty).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no wasted words. However, it may be too minimal for a tool with zero schema coverage.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (1 parameter, no output schema), but the description omits important details such as the format of the output, supported device types, or any filtering options. More context would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain the device_id parameter beyond its name. The description fails to compensate for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Return learned MAC addresses and ports' uses a specific verb (Return) and clearly identifies the resource (MAC addresses and ports). It is distinct from sibling tools like get_device_info or get_interface_status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like get_interface_status or get_device_info. There is no mention of context, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_running_configCRead-only
Return running configuration; API adapters use their config/archive endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| device_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds that API adapters use their config/archive endpoint, providing implementation context. Annotations already declare readOnlyHint=true, so the description is consistent but not highly informative beyond that.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences, front-loading the purpose. No superfluous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple tool (one parameter, no output schema), the description minimally covers purpose but fails to explain the parameter or return format, leaving the agent underinformed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description provides no information about the single required parameter 'device_id', such as its format or role. With 0% schema description coverage, this is a critical omission.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the running configuration, using a specific verb and resource. It implicitly distinguishes from siblings that are getters of other data, but doesn't explicitly differentiate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like get_device_info or when not to use it. The description lacks context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_vlan_listCRead-only
Return configured VLANs.
| Name | Required | Description | Default |
|---|---|---|---|
| device_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description ('Return configured VLANs') aligns. No additional behavioral traits are disclosed (e.g., empty list handling, authentication needs), but there is no contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence that states the core purpose with no wasted words. Could be slightly more structured but is appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description fails to describe the return format (e.g., list of VLAN IDs/names). The agent has no idea what output to expect, making the tool incomplete for effective selection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has device_id with 0% coverage (no description in the schema). The tool description does not clarify what device_id represents or expected format, leaving the agent to infer from the parameter name.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'return' and the resource 'configured VLANs', distinguishing it from siblings like get_interface_status. However, it could be more specific (e.g., on which device, in what format).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like get_interface_status or get_mac_address_table. The agent must rely solely on the tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_port_vlanADestructive
Preview/apply a port VLAN change. Apply requires dry_run=false and confirmation='CONFIRM'.
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide destructiveHint=true, so the description adds value by explaining the two modes (preview/apply) and the required parameters for apply. However, it does not disclose what gets destroyed (previous VLAN assignment), auth needs, or the return format, which is especially relevant without an output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single 14-word sentence that front-loads the main purpose and provides essential usage details. Every word is necessary and there is no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (5 nested parameters, destructive, preview/apply modes) and lack of output schema, the description covers the basic usage scenario but omits what the preview output looks like, error conditions, and the specific meaning of the required parameters. It is adequate but not complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains the purpose of dry_run and confirmation parameters (e.g., apply requires dry_run=false and confirmation='CONFIRM'), which adds meaning beyond the schema defaults. However, it does not explain the required parameters device_id, interface, and vlan_id, leaving a gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool is for previewing or applying a port VLAN change, which is a specific verb-resource combination. It distinguishes from read-only sibling tools like get_device_info and get_vlan_list by indicating a mutation operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states the conditions for applying (dry_run=false and confirmation='CONFIRM'), providing clear guidance on when to use preview vs apply. However, it does not mention when not to use the tool or any alternative tools, though siblings are all read-only.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
shutdown_interfaceBDestructive
Preview/apply interface shutdown. Apply requires explicit confirmation.
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds context beyond the destructiveHint annotation by explicitly stating that apply requires confirmation and that preview mode is available. This helps the agent understand the two-phase workflow.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very short (two sentences) and front-loaded with the core action. However, it lacks necessary parameter detail, which slightly reduces its overall utility for such a concise form.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema and the nested parameter structure, the description omits critical information about the confirmation field, the behavior of dry_run, and the required fields. It is insufficient for an agent to use the tool correctly without additional inference.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage for its parameters (dry_run, device_id, interface, confirmation). The tool description does not explain any parameter meaning, leaving agents to guess or rely solely on the schema structure, which is insufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action: preview or apply interface shutdown. This distinguishes it from sibling tools like get_interface_status (read-only) and enable_interface (opposite action).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description hints that apply requires explicit confirmation, but does not provide explicit guidance on when to use preview vs apply, or how to safely test before applying. No coverage of preconditions or alternatives beyond siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
v0.1.0- First observed
enable_interface - First observed
get_device_info - First observed
get_interface_stats - First observed
get_interface_status - First observed
get_mac_address_table - First observed
get_running_config - First observed
get_vlan_list - First observed
set_port_vlan - First observed
shutdown_interface
TDQS
Each tool has a distinct purpose (device info, VLANs, interfaces, MAC table, config, interface stats, port VLAN assignment, interface shutdown/enable). No functional overlap exists.
All tools follow a consistent verb_noun pattern: get_* for read operations, set_ for configuration, and shutdown_/enable_ for interface state changes.
With 9 tools, the server is well-scoped for basic Cisco switch management—neither sparse nor bloated.
Covers essential read operations (device info, VLANs, interfaces, MAC, config, stats) and key write operations (port VLAN, admin status). Missing CRUD for VLANs and interface configuration beyond VLAN, but not severely incomplete.
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 Connectors
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Read-only MCP server for turva.dev, an agent-readiness audit and advisory service.
MCP server for Modern Treasury — payment orders, transactions, counterparties and ledgers.
Related MCP Servers
- AlicenseCqualityCmaintenanceA Python-based MCP server that enables querying Cisco's Meraki Dashboard API to discover, monitor, and manage Meraki environments.2241MIT
- FlicenseNot gradedqualityDmaintenanceThis MCP (Model Context Protocol) Server provides a communication interface for the Meraki Dashboard API, auto-generated using AG2's MCP builder from the Meraki OpenAPI specification.-
- FlicenseNot gradedqualityDmaintenanceMCP server for executing show commands and managing Cisco IOS-XE network devices via async SSH using Scrapli.6-
- AlicenseAqualityCmaintenanceThin MCP server for Cisco CML2 that exposes the live OpenAPI specification and a generic API call tool, enabling models to interact with CML2 by reading the spec first.2MIT
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