Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Agent VM

FreeNot checked

Container-based runtime with an embedded MCP resolver providing sandboxed filesystem and shell access for AI agents.

GitHubEmbed

About

Container-based runtime with an embedded MCP resolver providing sandboxed filesystem and shell access for AI agents.

README

A container-based runtime for AI agents with an embedded MCP (Model Context Protocol) resolver. Agent VM gives your agent a sandboxed Linux environment with filesystem and shell access exposed through a standard MCP interface.

Quick Start

Build the base image

docker build -f images/base/Dockerfile -t agent-vm-base .

Run a container

# Interactive shell with workspace mount
docker run -it --rm -p 7777:7777 -v $(pwd)/my-project:/workspace agent-vm-base

# Detached — MCP resolver only
docker run -d --rm -p 7777:7777 -v $(pwd)/my-project:/workspace agent-vm-base sleep infinity

Verify the resolver is running

curl http://localhost:7777/health
# {"status":"ok"}

Connect an MCP client

The resolver speaks MCP Streamable HTTP. Point any compatible client at:

http://localhost:7777/mcp

See the MCP Resolver documentation for protocol details and tool reference.

Using Pre-built Images

docker pull ghcr.io/sean-lai-sh/agent-vm-base:latest

Documentation

Python SDK

For provisioning and managing Agent VMs programmatically, see agent-vm-sdk.

License

MIT

from github.com/sean-lai-sh/agent-vm

Installing Agent VM

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/sean-lai-sh/agent-vm

FAQ

Is Agent VM MCP free?

Yes, Agent VM MCP is free — one-click install via Unyly at no cost.

Does Agent VM need an API key?

No, Agent VM runs without API keys or environment variables.

Is Agent VM hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Agent VM in Claude Desktop, Claude Code or Cursor?

Open Agent VM on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Agent VM with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs