Things to try
Last updated: June 20, 2026
Once your client is connected, here's what the American Cloud MCP server is good at. Prompts below are starting points — adapt them to your account and phrasing.
Explore and audit (read-only)
These work out of the box, even with a read-only API key. They're the best way to build trust in the setup before enabling writes.
Take inventory:
What's running in my account right now? List every VM with its region, size, IP, and power state.
Understand your spend:
Walk through everything in my account and estimate what each resource costs per month. What's the biggest line item?
Security review:
Audit my firewall rules and network ACLs. Is anything open to the whole internet that doesn't need to be? Which ports are exposed on each public IP?
Find waste:
Are there any block storage volumes not attached to a VM, or reserved public IPs not assigned to anything?
Incident triage:
I can't reach my app on port 443. Check the VM's power state, the firewall rules on its public IP, any port forwarding rules, and whether it's behind a load balancer with healthy members.
Snapshot hygiene:
List all my snapshots with their creation dates. Which volumes have no recent snapshot?
Price before you build (read-only)
Cost estimates are tools too, so the assistant can compare options before creating anything:
What would a 3-node Kubernetes cluster with mid-size workers cost per month?
Compare the monthly cost of one large VM versus three small ones behind a load balancer.
Provision and manage (requires --allow-writes)
With a read-write key and the --allow-writes flag (see overview), the assistant can build:
A development environment in one prompt:
Create a small Ubuntu VM in us-west on an isolated network, use my SSH key, and open ports 22, 80, and 443. Show me the cost estimate first.
Pre-deploy safety net:
Take a snapshot of every volume attached to my database VMs, named with today's date.
Database plus DNS:
Set up PostgreSQL on a small VM, keep it listening on the private network only, then add an A record for api.example.com pointing at my load balancer's IP.
Routine operations:
Reboot the staging VM and confirm it comes back up.
Resize the volume on my build server to 200 GB.
Ask for the plan first. A prompt like "tell me what you would do before doing it" makes the assistant lay out each step — and clients prompt for confirmation on destructive operations regardless.
Code and cloud together (coding agents)
In a coding agent like Claude Code, the MCP server combines with your terminal — the assistant can provision infrastructure and use it in the same session:
Build and deploy:
Create a VM for this project, open ports 22 and 80, then install nginx over SSH and deploy the site in ./dist.
Kubernetes workflow:
Fetch the kubeconfig for my cluster and check whether all deployments are healthy.
Infrastructure as conversation:
Stand up a staging copy of my production setup — same network layout, half the VM size — and give me a cost comparison when you're done.
Tips for better results
- Scope the tool list. If you only work with compute and DNS, set
--services compute,dns— a smaller tool list helps the assistant pick the right tool faster. - Ask for cost estimates first. The assistant has pricing tools; make "estimate before create" part of your prompts until it's a habit.
- Start read-only. Run a week of audits and triage with a read-only key before enabling writes. You'll learn what the assistant is good at with zero risk.
- Be specific about regions and sizes when provisioning, or ask the assistant to list the options and recommend one.