An extensible Message Communication Protocol server that provides secure code execution capabilities in isolated sandbox environments, compatible with Claude for Desktop and other MCP clients.
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.
The server is built with a modular, extensible architecture:
├── 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
Clone this repository:
git clone https://github.com/yourusername/mcp-code-sandbox.git cd mcp-code-sandbox
Set up a virtual environment:
# Using venv python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate # Or using uv (recommended) uv init uv venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
Install the required packages:
# Using pip pip install fastmcp python-dotenv e2b-code-interpreter # Or using uv uv add fastmcp python-dotenv e2b-code-interpreter
Configure environment variables:
# Create a .env file with the following variables
E2B_API_KEY=your_e2b_api_key_here
INTERPRETER_TYPE=e2b # Default, can be changed to other implemented interpreters
You can run the server directly from the command line:
python main.py
This will start the server using the stdio transport, making it compatible with Claude for Desktop.
Make sure you have the latest version of Claude for Desktop installed
Open your Claude for Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add your code sandbox server configuration:
{ "mcpServers": { "code-sandbox": { "command": "python", "args": [ "/ABSOLUTE/PATH/TO/main.py" ] } } }
Or if you're using uv
:
{ "mcpServers": { "code-sandbox": { "command": "uv", "args": [ "--directory", "/ABSOLUTE/PATH/TO/PROJECT_DIRECTORY", "run", "main.py" ] } } }
Save the file and restart Claude for Desktop
The server provides the following tools:
The system is designed to be extensible. To add a new code interpreter:
src/sandbox/
for your interpreter implementationsrc/sandbox/code_interpreter.py
and src/sandbox/file_interface.py
src/sandbox/interpreter_factory.py
INTERPRETER_TYPE
to your new interpreterExample 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
src/sandbox/
)code_interpreter.py
: Abstract base class for code interpretersfile_interface.py
: Abstract interface for file operationsinterpreter_factory.py
: Factory for creating code interpreter instancessrc/sandbox/e2b/
)e2b_interpreter.py
: E2B implementation of the code interpretere2b_file_interface.py
: E2B implementation of file operationstools/
)sandbox_tools.py
: Tools for sandbox administrationcode_execution_tools.py
: Tools for code executionfile_tools.py
: Tools for file operationsmain.py
: Main application entry pointIf you encounter issues:
Discover shared experiences
Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!