cloud-vm-mcp-py AGENTS.md

cloud-vm-mcp-py AGENTS.md is an instructions file for Codex, OpenCode from sondt2709/cloud-vm-mcp-py. It costs 1,494 tokens per session, scanned A, original, MIT.

A set of project instructions for developing a Python MCP server that manages virtual machines in AWS and Azure. It documents how to install, run, format, lint, type-check, and test the project.

In plain words
What is it for?
Use it to run the VM server, list virtual machines, format and check Python code, and run individual tests or the full test suite.
Why use it?
It gives a coding agent the project’s expected commands and structure, reducing guesswork when changing or checking the code.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions AGENTS.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/sondt2709/cloud-vm-mcp-py/agents-md
Clone the repo
git clone --depth 1 https://github.com/sondt2709/cloud-vm-mcp-py

Made for: Codex, OpenCode.

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 cloud-vm-mcp-py AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sondt2709/cloud-vm-mcp-py/agents-md.svg)](https://agentmods.dev/instructions/sondt2709/cloud-vm-mcp-py/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/sondt2709/cloud-vm-mcp-py/agents-md"><img src="https://agentmods.dev/badge/instructions/sondt2709/cloud-vm-mcp-py/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,494 This file is loaded in full into every session.
When invoked 1,494 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.01494 $0.01494
Opus 5 $0.00747 $0.00747
Sonnet 5 $0.00299 $0.00299
Haiku 4.5 $0.00149 $0.00149

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

Security

Grade A, and why

cloud-vm-mcp-py AGENTS.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.

AGENTS.md · 163 lines

How it starts

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

AGENTS.md

MCP server for managing VMs across cloud providers (AWS, Azure). Python 3.10+, uv package manager, FastMCP framework, Pydantic models.

Build & Run

uv sync                          # Install all dependencies
uv run vm-mcp                    # Start the MCP server
uv run python cli.py list        # CLI: list VMs

Lint, Format, Type Check

uv run ruff check .              # Lint (auto-fixes with --fix by default, fix=true in config)
uv run ruff format .             # Format
uv run ty check .                # Type check (Astral's ty, scoped to vm_mcp/)

Pre-commit hooks run uv-lock sync and ty check automatically.

Tests

uv run pytest tests/ -v                                          # All tests
uv run pytest tests/test_config.py -v                            # Single file
uv run pytest tests/test_config.py::TestConfigLoader -v          # Single class
uv run pytest tests/test_config.py::TestConfigLoader::test_load_valid_config -v  # Single test
uv run pytest -k "test_load_valid" -v                            # By name pattern
uv run pytest tests/ --cov=vm_mcp --cov-report=html              # With coverage

Test stack: pytest + pytest-asyncio + pytest-mock. Async tests use @pytest.mark.asyncio. Tests are class-based (e.g., class TestConfigLoader:). Fixtures in tests/conftest.py.

Project Structure

vm_mcp/
├── __init__.py          # Exports main() and mcp
├── __main__.py          # python -m vm_mcp entry point
├── config.py            # ConfigLoader with file watching (hot-reload, watchdog)
├── mcp.py               # FastMCP server, all MCP tool definitions
├── model/
│   ├── credentials.py   # AWS/Azure credential Pydantic models
│   └── vm.py            # VMState, VMInfo, VMDetails, VMError models
└── providers/
    ├── base.py           # Abstract BaseProvider (ABC)
    ├── aws.py            # AWS EC2 provider
    ├── azure.py          # Azure Compute provider
    └── registry.py       # Provider factory/lookup

Read the full file on GitHub · 163 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 · 163 lines · 1,494 tokens per session scan A fe63a139d8c7

Subscribe to this mod's changes

cloud-vm-mcp-py AGENTS.md is an instructions file published in the GitHub repository sondt2709/cloud-vm-mcp-py (0 stars, last pushed 3mo ago), licensed MIT. It adds 1,494 tokens to every session, about $0.0075 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.