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.
npx agentmods add instructions/yding-git/exec-vps-mcp/agents-mdgit clone --depth 1 https://github.com/yding-git/exec-vps-mcpWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.03253 | $0.03253 |
| Opus 5 | $0.01626 | $0.01626 |
| Sonnet 5 | $0.00651 | $0.00651 |
| Haiku 4.5 | $0.00325 | $0.00325 |
Grade E, and why
exec-vps-mcp AGENTS.md scanned grade E with 4 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 yesterday.
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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
root or equivalent sudo access Reaches for credential fileshighPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
3. install only the `.pub` key in `/root/.ssh/authorized_keys`; Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
- Codex: `examples/codex-config.toml` merged into `~/.codex/config.toml`; Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
↓ subprocess.Popen(..., shell=True, cwd="/root") How it starts
The opening of the file, as written. The whole thing — 400 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — AI deployer and maintainer guide
Read this file and README.md before editing or deploying the repository.
1. Purpose and non-negotiable behavior
This repository intentionally exposes one unrestricted MCP tool:
exec_vps(command: string, timeout?: number) ->
{exit_code, stdout, stderr, timed_out, truncated}
The tool runs the supplied string through the host shell with shell=True, uses /root as its working directory, and is expected to run from a root-owned systemd service. stdout and stderr are independently capped at 1 MiB; truncated is true when either cap is exceeded.
Do not silently replace this with an allowlist, container sandbox, non-root user, SSH wrapper, or command parser. Those may be sensible designs for another project, but they change the behavior this tutorial exists to demonstrate. If the human asks for a safer variant, explain the trade-off and implement it as an explicit change.
The implementation should remain small. Do not add a web UI, database, queue, scheduler, Docker Compose stack, reverse proxy, OAuth server, plugin framework, or deployment abstraction unless the human explicitly asks for it.
2. Architecture
Default profile:
MCP client on the user's computer
↓ http://127.0.0.1:8798/mcp
local SSH port forward
↓ encrypted SSH connection
VPS 127.0.0.1:8798
↓ Streamable HTTP
MCPServer running as root
↓ subprocess.Popen(..., shell=True, cwd="/root")
VPS root shell
Optional same-host container profile:
Codex / Agent container
↓ private Docker bridge only
host bridge gateway:8798
↓
root MCPServer service
The second profile requires an explicit private-network firewall boundary. It is not permission to expose TCP 8798 publicly.
The repository also documents two sanitized deployment paths in docs/real-world-example.md:
Cloud path: Telegram / gateway -> Codex -> vps-admin -> private Docker network -> root MCP
Desktop path: Codex Desktop -> cloud-server plugin -> remote MCP entry -> exec_vps
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.
- yesterday First seen · 400 lines · 3,253 tokens per session scan E eef20242f47c
exec-vps-mcp AGENTS.md is an instructions file published in the GitHub repository yding-git/exec-vps-mcp (6 stars, last pushed 2d ago), licensed MIT. It adds 3,253 tokens to every session, about $0.0163 per session on Opus 5. A static security scan graded it E with 4 findings (asks for root, reaches for credential files, reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
buildNext
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
spec-kit AGENTS.md
Instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
langchain AGENTS.md
Instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.