Named Docker and Fly Machine sandbox computers with an interactive MCP App dashboard.
MCPpedia last refreshed this data
io.github.flujo-app/mcp-sandbox-computer-vm-for-ai is an MCP server that named Docker and Fly Machine sandbox computers with an interactive MCP App dashboard. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 85/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sandbox-computer": {
"args": [
"mcp-sandbox-computer-vm-for-ai"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Named, manageable Linux computers for AI agents — via MCP
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-sandbox-computer-vm-for-ai' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-sandbox-computer-vm-for-ai against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
Chrome DevTools for coding agents
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for io.github.flujo-app/mcp-sandbox-computer-vm-for-ai and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP Sandbox Computer VM for AI is a lifecycle-focused fork of Kilntainers. It gives agents isolated Linux computers, stable IDs, temporary or persistent lifecycles, an interactive MCP App dashboard, and first-class Docker and Fly Machines backends.
computer_id, or omit it to receive a readable random slug.sandbox_exec stays simple, while provider-neutral lifecycle tools power both models and the dashboard.Agents are already excellent at using terminals and can save thousands of tokens with common Linux utilities like grep, find, jq, and awk. Giving an agent access to the host OS is dangerous, while provisioning large numbers of isolated environments is operationally painful. MCP Sandbox Computer VM for AI gives every agent a dedicated sandbox with an explicit lifecycle.
Run the released package directly from PyPI. Docker and stdio are the defaults:
uvx mcp-sandbox-computer-vm-for-ai
Add it to Claude Code:
claude mcp add --scope user sandbox-computer -- uvx mcp-sandbox-computer-vm-for-ai
Or add it to a JSON-based MCP client such as Claude Desktop:
{
"mcpServers": {
"sandbox-computer": {
"command": "uvx",
"args": ["mcp-sandbox-computer-vm-for-ai"]
}
}
}
Call computer_dashboard to open the MCP App. The dashboard has no external browser dependencies. Its internal resource URI remains ui://kilntainers/computers for compatibility with the upstream implementation.
sandbox_exec accepts two additional optional inputs:
computer_id: a 1–63 character lowercase slug. The first call without one creates a readable random ID and reuses it as that MCP session's default.temporary: defaults to true. Temporary computers are removed when the owning MCP session closes. Set it to false for a computer that survives server/session shutdown and can be reattached later by ID.Every execution result includes computer_id and temporary next to stdout, stderr, exit code, and duration:
{
"computer_id": "steady-otter-a31f",
"temporary": false,
"stdout": "persistent\n",
"stderr": "",
"exit_code": 0,
"exec_duration_ms": 84
}
Lifecycle tools are provider-neutral:
| Tool | Purpose |
|---|---|
computer_dashboard | Open the MCP App and return the current inventory |
| `com |