A Model Context Protocol (MCP) server that enables LLMs to run ANY code safely in isolated Docker containers.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"sandbox-mcp": {
"command": "go",
"args": [
"run",
"github.com/pottekkat/sandbox-mcp@latest"
]
}
}
}
Run in terminal:
claude mcp add sandbox-mcp go run github.com/pottekkat/sandbox-mcp@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"sandbox-mcp": {
"command": "go",
"args": [
"run",
"github.com/pottekkat/sandbox-mcp@latest"
]
}
}
}