juniper-junos-mcp
Provides tools for managing Juniper Junos devices (SRX firewalls in particular) via NETCONF over SSH, enabling operational reads (system health, interfaces, routes, security policies, IPsec tunnels) and safe configuration changes with device-generated diffs, commit-confirmed rollback, and connectivity verification.
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., "@juniper-junos-mcpshow interfaces on srx-fw-01"
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.
juniper-junos-mcp
An MCP server that exposes Juniper Junos devices — SRX firewalls in particular — as tools an LLM client can call. Named operational reads, plus a configuration-change path that previews the device's own diff, commits behind a rollback timer, verifies the box still answers, and only then confirms.
It speaks MCP over Streamable HTTP, so it runs as its own service on the
network rather than as a local subprocess of one client. Transport to the device
is NETCONF over SSH, via junos-eznc.
Built for universal-network-director,
a chat-driven multi-vendor network manager with a human approval gate on every
write — but it is a standalone MCP server and works with any MCP client.
Not affiliated with, endorsed by, or supported by Juniper Networks. "Juniper", "Junos" and "SRX" are trademarks of their respective owners and are used here only to describe what this software talks to.
The safety model
A router's configuration is not a set of narrow API calls, so this doesn't pretend it is. Two things make config changes survivable, and neither is the model:
1. The diff comes from the device, not from the model
preview_config_change loads your set lines into a candidate
configuration and returns the device's own show | compare output. That's the
router telling you what would actually change, given its current state — not the
model's account of what it intended. You approve that.
write_apply_previewed_config then takes only a preview id. It cannot
commit anything that was not previewed, and the preview is re-validated against
the device before it commits: if the running config moved underneath you, the
apply fails closed rather than committing a stale diff. Previews expire
(JUNOSGW_PREVIEW_TTL, default 30 minutes), and an expired one fails with
"unknown or expired preview" so you re-preview against current state.
2. A change that severs management reverts itself
The apply is commit confirmed <n>: live immediately, but Junos rolls it back
automatically unless a confirming commit arrives within n minutes (1–60,
default 5). This server then reconnects on a new session to check the device
still answers, and sends the confirming commit only if it does. Lock yourself
out and the box undoes the change on its own.
What this does not protect
Reads are bounded by construction — every operational read runs a command this
server chose, so the model picks a tool, never a command. Config changes
are not bounded that way: the model writes the set lines. What protects that
side is the diff coming from the device and the auto-revert, not the tool
surface. Read the diff.
Read this before you point it at production
Two of the fifteen tools change state, and this server does not ask before
executing them. There is no confirmation step here — the write_ prefix is a
convention so your client can gate them.
Tool | What it does | Risk |
| Tears down one IPsec SA by index, forcing renegotiation | Traffic over that tunnel stops until it re-establishes. Changes no configuration. |
| Commits a previously previewed change | Whatever the diff said. Behind |
Note the asymmetry the prefix encodes: write_ means "a human must approve
this", not "this edits the configuration". write_clear_ipsec_sa edits nothing
and is gated because traffic stops when it runs. Junos itself draws the line
between configuration and operational state; the approval gate draws it around
consequences.
There is deliberately no free-form command tool. Every operational read has its command fixed here, so there is no guessed syntax and no approval spent on a command that was never going to work. An unnamed operation gets "I have no tool for that" — which is the signal for what to build next, not a gap to paper over with a shell.
Scope the device account read-only unless you specifically intend the writes to work. That control lives on the device, not in this code, and it is the one that holds regardless of what any model or client decides.
The MCP endpoint has no authentication
This server exposes its tools to anyone who can reach its port. There is no token, no client auth, no TLS on the MCP side.
MCP_HOST defaults to 127.0.0.1 for that reason. The container image sets
0.0.0.0 because it has to, which means publishing the container's port puts
an unauthenticated path to your firewalls on that interface. Keep it on an
internal network with the client, or terminate TLS and authentication in front
of it.
Device inventory
Device credentials live in a JSON file mounted read-only into the container —
never baked into the image, never committed. It holds plaintext SSH
credentials, so chmod 600 it and own it as the uid the container runs as.
{
"srx-edge": {
"ip": "192.0.2.10",
"port": 22,
"username": "automation",
"auth": { "type": "password", "password": "..." }
},
"srx-branch": {
"ip": "192.0.2.11",
"username": "automation",
"auth": { "type": "ssh_key", "private_key_path": "/app/config/id_ed25519" }
}
}port defaults to 22. auth.type is password or ssh_key; a flat
"password": "..." at the top level is also accepted for compatibility with the
format this inherited. The keys of the object are the names list_devices
returns and every other tool takes as device — no credential is ever exposed
through a tool result.
Container uid. The image creates a uid-1000 passwd entry deliberately. OpenSSH refuses to run when the calling uid has no
/etc/passwdentry, and the symptom is a misleading "EOF reading from transport" rather than anything naming the real cause.
Running it
docker build -t juniper-junos-mcp .
docker run --rm \
-v "$PWD/secrets/devices.json:/app/config/devices.json:ro" \
--user 1000:1000 \
-p 127.0.0.1:8003:8003 \
juniper-junos-mcpVariable | Default | Meaning |
|
| Device inventory path |
|
| Seconds a preview stays applicable |
|
| Bind address (the image sets |
|
| Bind port |
Tests
docker run --rm juniper-junos-mcp python test_arg_validation.pyOffline argument-validation checks — no device contact, no credentials needed.
Tool reference
TOOLS.md has the tool-by-tool reference: arguments, what each one
returns, and which of them need approval.
License
Apache-2.0. See LICENSE.
This server cannot be installed
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
Crypto transaction firewall and risk tools for MCP agents.
Tailscale device, route, DNS, key, user, and ACL management over MCP and CLI.
Remote MCP for Copilot CLI switch gate MCP, structured receipts, audit logs, and reviewer-ready evid
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/anderson-jason573/juniper-junos-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server