@agent-sandbox/mcp
v0.2.2
Published
MCP server for AI agent sandboxes — exposes sandbox tools over Model Context Protocol
Maintainers
Readme
@agent-sandbox/mcp
MCP server for managing isolated Docker sandbox containers.
Requirements
- Docker running locally
Usage
Claude Desktop
{
"mcpServers": {
"agent-sandbox": {
"command": "npx",
"args": ["-y", "@agent-sandbox/mcp"]
}
}
}Claude Code
claude mcp add agent-sandbox npx -- -y @agent-sandbox/mcpCodex CLI
codex mcp add agent-sandbox npx -- -y @agent-sandbox/mcpTools
| Tool | Description |
| --- | --- |
| create | Start a new sandbox container |
| list | List managed sandboxes |
| write | Execute a shell command inside the sandbox |
| read | Read container logs |
| delete | Stop and remove a sandbox |
| upload | Upload a file or directory into the sandbox |
| download | Download a file or directory from the sandbox |
Inputs
create:name?,image?,clone?list: —write:sandboxId,input,detach?read:sandboxId,tail?delete:sandboxIdupload:sandboxId,localPath,remotePathdownload:sandboxId,remotePath,localPath
Outputs
create:{ id, name, status, createdAt }list:{ sandboxes: [{ id, name, status, createdAt }] }write:{ ok, output?, exitCode? }read:{ output }delete:{ ok }upload:{ ok }download:{ ok }
License
MIT
