MCP Sandbox

by johanli233

Not rated
GitHub

About

Execute Python code and install packages safely within isolated Docker containers.

Details

Author
johanli233
Categories
Developer Tools, Other
Tags
#docker

Setup

Install MCP Sandbox in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/johanli233/python-mcp-sandbox

Follow the installation instructions in the repository README, then restart your MCP client.

Python MCP Sandbox is an interactive Python code execution tool that allows users and LLMs to safely execute Python code and install packages in isolated Docker containers.

- 🐳Docker Isolation: Securely run Python code in isolated Docker containers
- πŸ“¦Package Management: Easily install and manage Python packages with support for custom PyPI mirrors
- πŸ“ŠFile Generation: Support for generating files and accessing them via web links
- πŸ”Authentication: Optional API key-based authentication for multi-user environments
- 🎨Web UI: Built-in web interface for managing sandboxes and viewing execution results
- 🌐SSE Support: Real-time communication via Server-Sent Events for MCP integration

# Clone the repository git clone https://github.com/JohanLi233/python-mcp-sandbox.git cd python-mcp-sandbox # Install dependencies using uv uv venv uv sync # Start the server uv run main.py

The default SSE endpoint ishttp://127.0.0.1:8181/sse, and you can interact with it via the MCP Inspector through SSE or any other client that supports SSE connections.

The server configuration can be customized inconfig.toml:

- Host: Default is127.0.0.1(localhost only)
- Port: Default is8181
- PyPI Mirror: Configure your preferred Python package index mirror

To allow external access, change the host to0.0.0.0in the configuration file.
- create_sandbox: Creates a new Python Docker sandbox and returns its ID for subsequent code execution and package installation
- list_sandboxes: Lists all existing sandboxes (Docker containers) for reuse
- execute_python_code: Executes Python code in a specified Docker sandbox
- install_package_in_sandbox: Installs Python packages in a specified Docker sandbox
- check_package_installation_status: Checks if a package is installed or installation status in a Docker sandbox
- execute_terminal_command: Executes a terminal command in the specified Docker sandbox. Parameters:sandbox_id(string),command(string). Returnsstdout,stderr,exit_code.
- upload_file_to_sandbox: Uploads a local file to the specified Docker sandbox. Parameters:sandbox_id(string),local_file_path(string),dest_path(string, optional, default:/app/results).

python-mcp-sandbox/ β”œβ”€β”€ main.py # Application entry point β”œβ”€β”€ requirements.txt # Project dependencies β”œβ”€β”€ Dockerfile # Docker configuration for Python containers β”œβ”€β”€ results/ # Directory for generated files β”œβ”€β”€ mcp_sandbox/ # Main package directory β”‚ β”œβ”€β”€ __init__.py β”‚ β”œβ”€β”€ models.py # Pydantic models β”‚ β”œβ”€β”€ api/ # API related components β”‚ β”‚ β”œβ”€β”€ __init__.py β”‚ β”‚ └── routes.py # API route definitions β”‚ β”œβ”€β”€ core/ # Core functionality β”‚ β”‚ β”œβ”€β”€ __init__.py β”‚ β”‚ β”œβ”€β”€ docker_manager.py # Docker container management β”‚ β”‚ └── mcp_tools.py # MCP tools β”‚ └── utils/ # Utilities β”‚ β”œβ”€β”€ __init__.py β”‚ β”œβ”€β”€ config.py # Configuration constants β”‚ β”œβ”€β”€ file_manager.py # File management β”‚ └── task_manager.py # Periodic task management └── README.md # Project documentation
I've configured a Python code execution sandbox for you. You can run Python code using the following steps: 1. First, use the "list_sandboxes" tool to view all existing sandboxes (Docker containers). - You can reuse an existing sandbox_id if a sandbox exists, do not create a new one. - If you need a new sandbox, use the "create_sandbox" tool. - Each sandbox is an isolated Python environment, and the sandbox_id is required for all subsequent operations. 2. If you need to install packages, use the "install_package_in_sandbox" tool - Parameters: sandbox_id and package_name (e.g., numpy, pandas) - This starts asynchronous installation and returns immediately with status 3. After installing packages, you can check their installation status using the "check_package_installation_status" tool - Parameters: sandbox_id and package_name (name of the package to check) - If the package is still installing, you need to check again using this tool 4. Use the "execute_python_code" tool to run your code - Parameters: sandbox_id and code (Python code) - Returns output, errors and links to any generated files - All generated files are stored inside the sandbox, and file_links are direct HTTP links for inline viewing Example workflow: - Use list_sandboxes to check for available sandboxes, if no available sandboxes, use create_sandbox to create a new one β†’ Get sandbox_id - Use install_package_in_sandbox to install necessary packages (like pandas, matplotlib), with the sandbox_id parameter - Use check_package_installation_status to verify package installation, with the same sandbox_id parameter - Use execute_python_code to run your code, with the sandbox_id parameter Code execution happens in a secure sandbox. Generated files (images, CSVs, etc.) will be provided as direct HTTP links, which can viewed inline in the browser. Remember not to use plt.show() in your Python code. For visualizations: - Save figures to files using plt.savefig() instead of plt.show() - For data, use methods like df.to_csv() or df.to_excel() to save as files - All saved files will automatically appear as HTTP links in the results, which you can open or embed directly.

Below is an example config for Claude Desktop:

{ "mcpServers": { "mcpSandbox": { "command": "npx", "args": ["-y", "supergateway", "--sse", "http://127.0.0.1:8181/sse"] } } }

If authentication is enabled, include the API key:

{ "mcpServers": { "mcpSandbox": { "command": "npx", "args": ["-y", "supergateway", "--sse", "http://127.0.0.1:8181/sse?api_key=<YOUR_API_KEY>"] } } }
{ "mcpServers": { "mcpSandbox": { "command": "npx", "args": ["-y", "supergateway", "--sse", "http://115.190.87.78/sse?api_key=<API_KEY>"] } } }

Modify theserverUrlas needed for your environment.

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

Execute developer-defined bash scripts in a Dockerized environment for coding agents.

Run arbitrary JavaScript in an isolated Docker container with on-the-fly npm dependency installation.

An MCP server to help AI assistants to answer questions and generate AccelByte Extend SDK code more effectively .

Local stdio MCP server that lets AI coding agents read and maintain structured architecture, rules, and decisions directly from your repository.

Official Context7 MCP server that brings up-to-date, version-specific library documentation and code examples into AI coding prompts.

Remote, no-auth MCP server providing AI-powered codebase context and answers

Official Docker MCP Toolkit for discovering, configuring, and running containerized MCP servers through Docker Desktop and the Docker MCP gateway.

Instead of direct calling MCP tools, mcpcode server transforms MCP tool calls into TypeScript programs, enabling smarter, lower-latency orchestration by LLMs.

Help agents automatically write and test stories for your UI components

No reviews yet β€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.