exec-vps-mcp AGENTS.md

A set of instructions for maintaining and deploying a project that provides one unrestricted tool for running shell commands on a remote VPS. A VPS is a rented virtual server, and AGENTS.md is a file that tells coding agents how to work in a repository.

In plain words
What is it for?
Use it when reading, changing, or deploying the exec-vps-mcp repository, especially when working with its shell-command tool, system service, output limits, and required human setup.
Why use it?
It gives an agent the required project rules and explains the security and architecture choices it must preserve while editing or deploying the repository.

Instructions file for CodexOpenCode

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/yding-git/exec-vps-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/yding-git/exec-vps-mcp

Made for: Codex, OpenCode.

Per session 3,253 This file is loaded in full into every session.
When invoked 3,253 The same file — it is already loaded in full.
Security scan E 4 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 $0.03253 $0.03253
Opus 5 $0.01626 $0.01626
Sonnet 5 $0.00651 $0.00651
Haiku 4.5 $0.00325 $0.00325

Measured yesterday against content hash eef20242f47c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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")
AGENTS.md · 400 lines

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

Read the full file on GitHub · 400 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. yesterday First seen · 400 lines · 3,253 tokens per session scan E eef20242f47c

Subscribe to this mod's changes

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.

Related

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.

openai/codex · 5,182 tokens

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).

microsoft/vscode · 6,785 tokens

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.

vercel/next.js · 7,296 tokens

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).

microsoft/vscode · 5,001 tokens

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.

github/spec-kit · 7,040 tokens

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.

langchain-ai/langchain · 4,345 tokens