Labsco
chrishayuk logo

MCP Code Sandbox Server

โ˜… 16

from chrishayuk

Execute code securely in isolated sandbox environments using the E2B API.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeNeeds API keys

MCP Code Sandbox Server

An extensible Message Communication Protocol (MCP) server that provides secure code execution capabilities in isolated sandbox environments. This server follows the MCP standard, making it compatible with Claude for Desktop and other MCP clients.

Features

  • Create isolated sandbox environments for code execution
  • Execute Python code securely
  • Perform file operations (listing, reading, writing)
  • Install Python packages in the sandbox
  • Extensible architecture with abstracted code interpreter interface
  • Modular design with clean separation of concerns

Architecture

The server is built with a modular, extensible architecture:

Core Components

  • Abstract Interpreter Interface: Allows different code execution backends to be integrated
  • Sandbox Administration: Tools for creating and managing sandbox environments
  • Code Execution: Tools for running code and installing packages
  • File Operations: Tools for managing files within sandboxes

Project Structure

โ”œโ”€โ”€ src/
โ”‚   โ””โ”€โ”€ sandbox/
โ”‚       โ”œโ”€โ”€ __pycache__/
โ”‚       โ”œโ”€โ”€ e2b/
โ”‚       โ”‚   โ”œโ”€โ”€ __pycache__/
โ”‚       โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚       โ”‚   โ”œโ”€โ”€ e2b_file_interface.py
โ”‚       โ”‚   โ””โ”€โ”€ e2b_interpreter.py
โ”‚       โ”œโ”€โ”€ __init__.py
โ”‚       โ”œโ”€โ”€ code_interpreter.py
โ”‚       โ”œโ”€โ”€ file_interface.py
โ”‚       โ””โ”€โ”€ interpreter_factory.py
โ”œโ”€โ”€ tools/
โ”‚   โ”œโ”€โ”€ __pycache__/
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”œโ”€โ”€ code_execution_tools.py
โ”‚   โ”œโ”€โ”€ file_tools.py
โ”‚   โ””โ”€โ”€ sandbox_tools.py
โ”œโ”€โ”€ main.py
โ”œโ”€โ”€ .env
โ”œโ”€โ”€ .gitignore
โ”œโ”€โ”€ .python-version
โ”œโ”€โ”€ pyproject.toml
โ”œโ”€โ”€ README.md
โ””โ”€โ”€ uv.lock

Available Tools

The server provides the following tools:

Sandbox Administration

  • create_sandbox: Create a new sandbox environment
  • close_sandbox: Close and clean up a sandbox
  • get_sandbox_status: Check status of sandboxes

Code Execution

  • execute_code: Run Python code in a sandbox
  • install_package: Install a Python package
  • create_run_close: All-in-one tool that creates a sandbox, runs code, and cleans up

File Operations

  • list_files: List files in the sandbox
  • read_file: Read the contents of a file
  • write_file: Write content to a file
  • upload_file: Upload a file to the sandbox

Extending with New Interpreters

The system is designed to be extensible. To add a new code interpreter:

  1. Create a new directory under src/sandbox/ for your interpreter implementation
  2. Implement the interfaces defined in src/sandbox/code_interpreter.py and src/sandbox/file_interface.py
  3. Add the new interpreter type to the src/sandbox/interpreter_factory.py
  4. Configure the environment variable INTERPRETER_TYPE to your new interpreter

Example of implementing a new interpreter:

# src/sandbox/my_backend/my_interpreter.py
from src.sandbox.code_interpreter import CodeInterpreter, ExecutionResult
from src.sandbox.file_interface import FileInterface

class MyFileInterface(FileInterface):
    # Implement the required methods
    
class MyInterpreter(CodeInterpreter):
    # Implement the required methods

# Update src/sandbox/interpreter_factory.py to include your new interpreter

Module Descriptions

Sandbox Core (src/sandbox/)

  • code_interpreter.py: Abstract base class for code interpreters
  • file_interface.py: Abstract interface for file operations
  • interpreter_factory.py: Factory for creating code interpreter instances

E2B Implementation (src/sandbox/e2b/)

  • e2b_interpreter.py: E2B implementation of the code interpreter
  • e2b_file_interface.py: E2B implementation of file operations

Tools (tools/)

  • sandbox_tools.py: Tools for sandbox administration
  • code_execution_tools.py: Tools for code execution
  • file_tools.py: Tools for file operations

Main Application

  • main.py: Main application entry point

Security Considerations

  • The code execution happens in sandboxed environments for safety
  • Do not use this server to execute untrusted code in production environments
  • The server does not currently implement authentication - it should only be used in trusted environments