Single exec tool running caller Python in a network-isolated locked-down sandbox.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
English | Π ΡΡΡΠΊΠΈΠΉ
Public OSS MCP server (Go, MIT) exposing a single powerful tool β exec β that runs
caller-supplied Python code in a network-isolated, locked-down sandbox and returns
stdout / stderr / exit_code. It is the "code-execution mode" building block: instead of
flooding an agent's context with hundreds of tool schemas, the agent writes code that orchestrates
the work.
Works over three transports β stdio / HTTP / SSE β with an identical tool set everywhere
(official modelcontextprotocol/go-sdk).
exec toolInput: { code: string (required), timeout_s?: int, stdin?: string }
Output: { stdout, stderr, exit_code, duration_ms, truncated, timed_out }
exit_code or timed_out=true is a normal result, not a tool error. Only invalid
input (empty code, oversized stdin) is a tool-call error.Per execution: no network, non-root, cap-drop=ALL, no-new-privileges, read-only rootfs,
no CAP_SYS_ADMIN, ephemeral tmpdir (cleaned up), wall-clock timeout (kills the whole
process-group), memory/PID/CPU limits, capped output (1 MiB β truncated). Runs are serialized
within an instance; scale out with replicas. Caller data (code/stdin/output) is never persisted
and never logged in full β only metadata.
execis the most powerful surface there is. When embedding it in an agent, gate it behind that agent's tool-policy (trusted roles only).
Network note: --network none only applies to stdio. In HTTP/SSE the container needs
networking to serve its port, so sandboxed code would inherit egress β deny it at the orchestrator.
In k8s, a NetworkPolicy that allows ingress to the port and denies all egress:
Docker (recommended production posture):
--tmpfs /tmp is required: the rootfs is read-only, and each run needs a writable
ephemeral workspace (cleaned up after).
Set MCP_EXEC_AUTH_TOKEN to require every HTTP/SSE request to carry a matching X-MCP-AUTH header
(constant-time compare; 401 otherwise). Empty token disables it. Not applicable to stdio.
| Env var | Purpose | Default |
|---|---|---|
MCP_EXEC_TRANSPORT | stdio | http | sse | stdio |
MCP_EXEC_ADDR | listen address for http/sse | :8080 |
MCP_EXEC_DEFAULT_TIMEOUT_S | default wall-clock timeout | 30 |
MCP_EXEC_MAX_TIMEOUT_S | timeout ceiling | 300 |
MCP_EXEC_MAX_OUTPUT_BYTES | combined stdout+stderr cap | 1048576 |
MCP_EXEC_MAX_STDIN_BYTES | stdin size cap | 1048576 |
MCP_EXEC_PYTHON | interpreter path | python3 |
MCP_EXEC_AUTH_TOKEN | if set, http/sse require X-MCP-AUTH header (constant-time); empty = off | `` |
bash / multi-language, network from the sandbox, proxying other MCP servers into the sandbox.
MIT.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/exec-sandbox)<a href="https://allmcps.com/mcp/exec-sandbox"><img src="https://allmcps.com/api/badge/exec-sandbox?style=directory" alt="Exec Sandbox on AllMCPs" /></a>