Skip to main content
Glama
humyai99

Cisco Switch MCP Server

by humyai99

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: 2

Set 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.20

cisco_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.server

Run the MCP Inspector against a lab only:

npx @modelcontextprotocol/inspector python -m cisco_switch_mcp.server

Read-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 src

Before production:

  1. Test against a lab switch or simulator.

  2. Verify Netmiko driver and command output for the exact firmware.

  3. Add SNMP polling and parser fixture tests.

  4. Align Catalyst Center/Meraki endpoints with official OpenAPI specs.

  5. Use a secret manager and least-privilege accounts.

  6. Apply TLS/certificate and network access policies.

  7. Enable write operations only after code review and change approval.

Evaluation questions

  1. Show model and firmware for cbs220-lab.

  2. Which ports on cbs220-lab are down?

  3. List configured VLANs.

  4. Find MAC 0011.2233.4455.

  5. Retrieve the running config.

  6. Find the interface with the most input errors.

  7. Query the Catalyst Center device inventory.

  8. Show interface status from Catalyst Center.

  9. Query VLANs from Meraki.

  10. Preview changing Gi1/0/10 to 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 tools
enable_interfaceB
Destructive

Preview/apply interface enable. Apply requires explicit confirmation.

ParametersJSON Schema
NameRequiredDescriptionDefault
requestYes

TDQS

B3.1/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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_infoA
Read-only

Return model, software version, uptime and selected adapter for a device.

ParametersJSON Schema
NameRequiredDescriptionDefault
device_idYes

TDQS

A3.9/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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_statsB
Read-only

Return interface traffic and error counters.

ParametersJSON Schema
NameRequiredDescriptionDefault
device_idYes

TDQS

B3.4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters1/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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_statusA
Read-only

Return operational state for all interfaces.

ParametersJSON Schema
NameRequiredDescriptionDefault
device_idYes

TDQS

A3.5/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters2/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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_tableC
Read-only

Return learned MAC addresses and ports.

ParametersJSON Schema
NameRequiredDescriptionDefault
device_idYes

TDQS

C2.8/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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_configC
Read-only

Return running configuration; API adapters use their config/archive endpoint.

ParametersJSON Schema
NameRequiredDescriptionDefault
device_idYes

TDQS

C2.9/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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_listC
Read-only

Return configured VLANs.

ParametersJSON Schema
NameRequiredDescriptionDefault
device_idYes

TDQS

C2.9/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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_vlanA
Destructive

Preview/apply a port VLAN change. Apply requires dry_run=false and confirmation='CONFIRM'.

ParametersJSON Schema
NameRequiredDescriptionDefault
requestYes

TDQS

A3.9/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_interfaceB
Destructive

Preview/apply interface shutdown. Apply requires explicit confirmation.

ParametersJSON Schema
NameRequiredDescriptionDefault
requestYes

TDQS

B3.4/5.0
Behavior4/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters1/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

  1. 9 tool updatesv0.1.0
    • First observedenable_interface
    • First observedget_device_info
    • First observedget_interface_stats
    • First observedget_interface_status
    • First observedget_mac_address_table
    • First observedget_running_config
    • First observedget_vlan_list
    • First observedset_port_vlan
    • First observedshutdown_interface

TDQS

A3.6/5.0
Disambiguation5/5

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.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: get_* for read operations, set_ for configuration, and shutdown_/enable_ for interface state changes.

Tool Count5/5

With 9 tools, the server is well-scoped for basic Cisco switch management—neither sparse nor bloated.

Completeness4/5

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

ActivitySlowing
ResponsivenessNo issues

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    This 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.
    -
  • A
    license
    A
    quality
    C
    maintenance
    Thin 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.
    2
    MIT

Latest Blog Posts

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