mcp-server-vyos CLAUDE.md

mcp-server-vyos CLAUDE.md is an instructions file for Claude Code from cacack/mcp-server-vyos. It costs 645 tokens per session, scanned A, original, MIT.

A set of project instructions for an MCP server that manages VyOS routers through their HTTPS API. VyOS is router software used to configure networks and related system services.

In plain words
What is it for?
It helps develop or maintain router-management tools, run tests and checks, fetch VyOS documentation, and safely change router settings.
Why use it?
It records API details and safety decisions that are easy to get wrong, including request formats, authentication, and automatic rollback for configuration changes.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/cacack/mcp-server-vyos/claude-md
Clone the repo
git clone --depth 1 https://github.com/cacack/mcp-server-vyos

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-server-vyos CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cacack/mcp-server-vyos/claude-md.svg)](https://agentmods.dev/instructions/cacack/mcp-server-vyos/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/cacack/mcp-server-vyos/claude-md"><img src="https://agentmods.dev/badge/instructions/cacack/mcp-server-vyos/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 645 This file is loaded in full into every session.
When invoked 645 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00645 $0.00645
Opus 5 $0.00322 $0.00322
Sonnet 5 $0.00129 $0.00129
Haiku 4.5 $0.00064 $0.00064

Measured 5d ago against content hash 25b09a2718e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

mcp-server-vyos CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 49 lines

How it starts

The opening of the file, as written. The whole thing — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

Project Overview

Python MCP server wrapping the VyOS HTTPS REST API. Exposes VyOS router management (config, operational commands, system management) and VyOS documentation as MCP tools.

Commands

uv venv && source .venv/bin/activate
uv pip install -e ".[dev]"
pytest
ruff check .
python -m vyos_mcp  # run server (stdio transport)

Architecture

  • src/vyos_mcp/server.py — MCP server, tool registration (FastMCP)
  • src/vyos_mcp/client.py — VyOS REST API client (auth, TLS, form-encoded)
  • src/vyos_mcp/docs.py — VyOS docs client (GitHub API, TTL cache)

Key Design Decisions

  • commit-confirm is the default for config changes (auto-rollback safety)
  • VyOS API uses form-encoded POST with data (JSON) and key fields, NOT JSON body
  • Self-signed TLS certs common on VyOS — skip verification by default
  • API key via VYOS_API_KEY, router URL via VYOS_URL env vars
  • Docs fetched live from vyos/vyos-documentation GitHub repo (branch: current)

VyOS API Quirks (validated against real router)

  • All POST endpoints use application/x-www-form-urlencoded with data and key fields
  • Configure operations are slow (10-20s) — client uses 30s timeout
  • confirm requires {"op": "confirm", "path": []} — path field is mandatory, even empty
  • commit-confirm uses confirm_time as a field on the command dict, not a separate operation
  • reboot/poweroff require "path": ["now"]
  • /retrieve supports three ops: showConfig, returnValues, exists
  • ping/traceroute are NOT show subcommands — /show rejects them. /traceroute is a dedicated endpoint taking {"op": "traceroute", "host": ...} and returns an mtr report in data. There is no /ping endpoint (absent from the API's OpenAPI schema)

Testing

  • Use .env file with VYOS_URL and VYOS_API_KEY for local testing (gitignored)
  • Use commit-confirm with short timeouts during testing to avoid persisting bad config

Releasing

  • Merge PRs with /cacack:merge, not raw gh pr merge --merge. The repo uses merge commits + release-please; gh pr merge defaults the merge-commit body to the conventional PR title (feat: …), which release-please parses as a second commit and duplicates every CHANGELOG entry. The merge-commit body must be de-conventionalized prose (PR title with the type(scope): prefix stripped). See #43.

Read the full file on GitHub · 49 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 49 lines · 645 tokens per session scan A 25b09a2718e1

Subscribe to this mod's changes

mcp-server-vyos CLAUDE.md is an instructions file published in the GitHub repository cacack/mcp-server-vyos (5 stars, last pushed 5d ago), licensed MIT. It adds 645 tokens to every session, about $0.0032 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.