mcp-netmiko-server

by upa

33 stars
239 downloads
Not rated
GitHub

About

An MCP server that enables LLMs interacting with your network devices

Details

Author
upa
GitHub stars
33
Downloads
239
Categories
Other

- List network devices defined in a TOML file
- Send arbitrary commands to devices and retrieve output
- Send configuration commands with automatic commit or save
- Supports multiple device platforms via Netmiko (Juniper, Cisco, etc.)
- Default credentials inheritance per TOML section
- Runs as stdio or SSE server

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name mcp-netmiko-server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, create a TOML configuration file listing your devices with credentials, and run the server using uv run with either stdio or SSE transport. For Claude Desktop, add the server configuration to your claude_desktop_config.json pointing to the script and TOML file.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp-netmiko-server": {
            "mcp-netmiko-server": {
                "command": "uv",
                "args": [
                    "run",
                    "--with",
                    "mcp[cli]",
                    "--with",
                    "netmiko",
                    "main.py",
                    "my-devices.network.toml"
                ]
            }
        }
    }
}

McpServers

{
    "mcp-netmiko-server": {
        "command": "uv",
        "args": [
            "run",
            "--with",
            "mcp[cli]",
            "--with",
            "netmiko",
            "main.py",
            "my-devices.network.toml"
        ]
    }
}

mcp-netmiko-server

An MCP server that enables LLMs interacting with your network devices
via SSH (netmiko).

| Tool | Description |
|:---------------------------------------|:--------------------------------------------------------------------------|
| get_network_device_list | Return list of network device names and types defined in a TOML file. |
| send_command_and_get_output | Send a command to a device and returns its output. |
| set_config_commands_and_commit_or_save | Send configuration commands to a device and commit or save automatically. |

mcp-netmiko-demo

How to use

  • Install
```console git clone https://github.com/upa/mcp-netmiko-server cd mcp-netmiko-server
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.