Cisco SSH MCP Server
Connect to, configure, and monitor Cisco network devices like routers and switches via SSH.
Cisco SSH MCP Server
A Model Context Protocol (MCP) server for managing SSH connections to Cisco network devices. This server provides tools for connecting to, configuring, and monitoring Cisco routers and switches through SSH.
Features
- Multiple SSH Connections: Manage connections to multiple Cisco devices simultaneously
- Command Execution: Execute any CLI command on connected devices
- Configuration Management: Enter config mode and apply configuration changes
- Show Commands: Execute show commands with optional output parsing
- Raw Terminal Access: Send raw text for interactive sessions
- Connection Management: List, connect, and disconnect from devices
- Secure Authentication: Support for password and key-based authentication
Installation
npm install
npm run build
Usage
As an MCP Server
Configure your MCP client (like Cline) to use this server:
{
"mcpServers": {
"cisco-ssh": {
"command": "node",
"args": ["path/to/cisco-ssh-mcp/dist/index.js"]
}
}
}
Command Line Usage
# Start the MCP server
npm start
# Start with default connection parameters
cisco-ssh-mcp --host 192.168.1.1 --username admin
Available Tools
cisco_connect
Connect to a Cisco device via SSH.
Parameters:
host(required): IP address or hostnameusername(required): SSH usernamepassword: SSH passwordprivateKey: Private key for authenticationport: SSH port (default: 22)connectionId: Unique identifier for the connection
cisco_exec
Execute a command on a connected device.
Parameters:
command(required): Command to executeconnectionId: Which connection to usetimeout: Command timeout in milliseconds
cisco_config
Enter configuration mode and execute configuration commands.
Parameters:
commands(required): Array of configuration commandsconnectionId: Which connection to usesave: Whether to save config after changes
cisco_show
Execute show commands with optional output parsing.
Parameters:
command(required): Show command to executeconnectionId: Which connection to useparseOutput: Parse output into structured format
cisco_send_raw
Send raw text to the SSH connection.
Parameters:
text(required): Raw text to sendconnectionId: Which connection to usewaitForPrompt: Wait for command prompt
cisco_list_connections
List all active SSH connections.
cisco_disconnect
Disconnect from a device.
Parameters:
connectionId: Connection to disconnect
Examples
Connecting to a Device
// Connect using password
{
"tool": "cisco_connect",
"arguments": {
"host": "192.168.1.1",
"username": "admin",
"password": "cisco123",
"connectionId": "router1"
}
}
// Connect using SSH key
{
"tool": "cisco_connect",
"arguments": {
"host": "192.168.1.1",
"username": "admin",
"privateKey": "-----BEGIN RSA PRIVATE KEY-----\\n...",
"connectionId": "router1"
}
}
Executing Commands
// Show interface status
{
"tool": "cisco_show",
"arguments": {
"command": "show ip interface brief",
"parseOutput": true
}
}
// Configure an interface
{
"tool": "cisco_config",
"arguments": {
"commands": [
"interface GigabitEthernet0/1",
"ip address 192.168.10.1 255.255.255.0",
"no shutdown"
],
"save": true
}
}
Security Considerations
- Use SSH keys instead of passwords when possible
- Implement proper network segmentation for management traffic
- Enable logging for all commands executed
- Use dedicated management VLANs
- Implement proper access controls and authentication
Troubleshooting
- Connection Timeout: Check network connectivity and SSH service on device
- Authentication Failed: Verify credentials and SSH configuration
- Command Timeout: Increase timeout values for slow devices
- Permission Denied: Ensure user has appropriate privileges
License
MIT License - see LICENSE file for details.
관련 서버
Scout Monitoring MCP
스폰서Put performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
스폰서Access financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
UUID MCP Provider
Generates timestamp-based unique identifiers using UUID v7.
MCP SBOM Server
Performs a Trivy scan to produce a Software Bill of Materials (SBOM) in CycloneDX format.
Framer Plugin MCP Server
Create and manage Framer plugins with web3 capabilities.
MiniMax MCP JS
A JavaScript/TypeScript server for MiniMax MCP, offering image/video generation, text-to-speech, and voice cloning.
Scout Monitoring MCP
Scout's official MCP pipes error, trace and metric data from production to your AI agent
Azure DevOps
Interact with Azure DevOps for managing projects, pipelines, and repositories.
Shell Executor
Execute shell commands safely on a remote server.
Terraform MCP
A command-line tool that acts as an MCP server to interact with Terraform environments.
MCP Chart Server
Create real-time TradingView chart visualizations using the Chart-IMG API.
Berry MCP Server
A universal framework for easily creating and deploying Model Context Protocol servers with any tools.