├── .github └── workflows │ └── release.yml ├── .gitignore ├── DEVELOPMENT.md ├── Dockerfile ├── LICENSE ├── README.md ├── install.ps1 ├── install.sh ├── smithery.yaml ├── src └── code-sandbox-mcp │ ├── go.mod │ ├── go.sum │ ├── installer │ ├── install.go │ └── update.go │ ├── main.go │ ├── resources │ └── container_logs.go │ └── tools │ ├── copy-file-from-container.go │ ├── copy-file.go │ ├── copy-project.go │ ├── exec.go │ ├── initialize.go │ ├── stop-container.go │ └── write-file.go └── test ├── go ├── go.mod ├── go.sum └── test.go ├── python ├── main.py └── requirements.txt └── typescript ├── index.d.ts ├── package-lock.json ├── package.json ├── test.ts └── types └── test.d.ts /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/README.md -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/install.sh -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/code-sandbox-mcp/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/go.mod -------------------------------------------------------------------------------- /src/code-sandbox-mcp/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/go.sum -------------------------------------------------------------------------------- /src/code-sandbox-mcp/installer/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/installer/install.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/installer/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/installer/update.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/main.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/resources/container_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/resources/container_logs.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/tools/copy-file-from-container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/tools/copy-file-from-container.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/tools/copy-file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/tools/copy-file.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/tools/copy-project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/tools/copy-project.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/tools/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/tools/exec.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/tools/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/tools/initialize.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/tools/stop-container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/tools/stop-container.go -------------------------------------------------------------------------------- /src/code-sandbox-mcp/tools/write-file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/src/code-sandbox-mcp/tools/write-file.go -------------------------------------------------------------------------------- /test/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/test/go/go.mod -------------------------------------------------------------------------------- /test/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/test/go/go.sum -------------------------------------------------------------------------------- /test/go/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/test/go/test.go -------------------------------------------------------------------------------- /test/python/main.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | 3 | print(np.array([1, 2, 3])) 4 | -------------------------------------------------------------------------------- /test/python/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /test/typescript/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/test/typescript/index.d.ts -------------------------------------------------------------------------------- /test/typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/test/typescript/package-lock.json -------------------------------------------------------------------------------- /test/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/test/typescript/package.json -------------------------------------------------------------------------------- /test/typescript/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automata-Labs-team/code-sandbox-mcp/HEAD/test/typescript/test.ts -------------------------------------------------------------------------------- /test/typescript/types/test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | --------------------------------------------------------------------------------