LLM Python Code Sandbox
Enables LLMs to execute Python code in isolated sandboxes with file operations and MCP integration, supporting multi-round execution and plot capture.
README
LLM Python Code Sandbox 🚀
Self-Hosting an E2B-like coding playground
| Logo | Description |
|---|---|
| <img src="./asset/logo.png" width="500px"> | A Python code sandbox HTTP service crafted for LLMs, enabling isolated Python execution environments with code execution, file operations, and MCP integration. 🎛️ |
🌟 Awesome Features
- Create Sandbox 🆕: Spin up a Jupyter kernel and get a unique ID in a flash! ⚡
- Execute Code 💻: Run code in a specified Jupyter kernel and receive stdout, stderr, errors, tracebacks, and even binary files like images. Supports Multi-Round Code Execution for complex workflows! 🎨
- File Operations 📁: Upload files to the sandbox workspace and download files from it seamlessly. 📤📥
- Close Sandbox 🗑️: Safely shut down sandboxes and clean up resources when you're done. ♻️
- Sandbox Isolation 🔒: Each sandbox has its own Python virtual environment and working directory to prevent package conflicts. 🛡️
- Auto-Cleanup 🧹: Sandboxes automatically close after 24 hours with hourly cleanup of expired ones. No messy leftovers! 🚿
- Virtual Environment Mirror 🪞: Service auto-creates a base virtual environment image with common packages on startup, making new sandbox initialization super fast! ⚡
- MCP Support 🤖: Integrated with FastAPI-MCP, allowing the service to be directly called by AI models. 🤝
🚀 Getting Started
Install Dependencies
Run this command in your project directory to install all required packages:
cd sandbox
pip install -r requirements.txt
Start the Service
Launch the sandbox service with this simple command:
python main.py --host 0.0.0.0 --port 8000
The service will be up and running at http://0.0.0.0:8000 🌐
📱 Sandbox Client (E2B-like)
You can directly use the SandboxClient to interact with the sandbox service!
Basic Usage
# Create client instance
client = SandboxClient(base_url='http://0.0.0.0:8000')
# Create a new sandbox
sandbox_id = client.create_sandbox()
# Execute some code
client.execute_code("print('Hello, Sandbox! 👋')")
# Install required Python packages in the sandbox's virtual environment
client.install_package("numpy")
# View generated files
files = client.list_files()
# Download a generated CSV file
csv_file = next((f for f in files if f['path'].endswith('.csv')), None)
client.download_file(csv_file['path'])
# Upload a local file to the sandbox
client.upload_file('test_upload.txt')
# Close the sandbox when finished
client.close_sandbox()
# Check if all sandboxes are closed
client.list_all_sandboxes()
Multi-Round Code Execution Example 🎭
The sandbox supports executing multiple code blocks in the same session, preserving state between executions. Perfect for building complex programs step by step! 🧩
# Create client and sandbox
client = SandboxClient(base_url='http://0.0.0.0:8000')
client.create_sandbox()
# Step 1: Import libraries and define initial data
client.execute_code("""import numpy as np
import pandas as pd
# Create sample data
data = {
'Name': ['Alice', 'Bob', 'Charlie', 'David'],
'Age': [28, 32, 45, 36],
'Salary': [8000, 12000, 15000, 9000]
}
# Create DataFrame
df = pd.DataFrame(data)
print(df)""")
# Step 2: Data processing and analysis (using data defined in step 1)
client.execute_code("""# Calculate average age and salary
avg_age = df['Age'].mean()
avg_salary = df['Salary'].mean()
print(f"Average Age: {avg_age:.1f}")
print(f"Average Salary: ${avg_age:.2f}")
# Add a new column
df['Age Group'] = pd.cut(df['Age'], bins=[20, 30, 40, 50], labels=['20-30s', '30-40s', '40-50s'])
print(df)""")
# Step 3: Save processed data
client.execute_code("""# Save to CSV file
df.to_csv('processed_data.csv', index=False)
print("Data saved to processed_data.csv 💾")
""")
# Download the generated file
files = client.list_files()
csv_file = next((f for f in files if f['path'] == 'processed_data.csv'), None)
if csv_file:
client.download_file(csv_file['path'])
# Close the sandbox
client.close_sandbox()
Matplotlib Plot Capture Example 🎨
The sandbox can capture matplotlib plots and return them as image data, perfect for displaying or saving visualizations! 📊
# Create client and sandbox
client = SandboxClient(base_url='http://0.0.0.0:8000')
client.create_sandbox()
# Install required packages (if not in base environment)
client.install_package("matplotlib")
client.install_package("numpy")
# Execute plotting code
result = client.execute_code("""import numpy as np
import matplotlib.pyplot as plt
# Generate data
x = np.linspace(0, 10, 100)
y1 = np.sin(x)
y2 = np.cos(x)
# Create plot
plt.figure(figsize=(10, 6))
plt.plot(x, y1, label='Sine Function')
plt.plot(x, y2, label='Cosine Function')
plt.title('Trigonometric Functions Demo 📈')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
plt.grid(True)
plt.legend()
plt.tight_layout()
# The sandbox will automatically capture the plot and return image data
""")
# The result will contain image data for the plot, which can be used for display or saving
# Image data is typically stored in result['results'] as base64 encoded strings
# Another way to save the plot as a file
client.execute_code("""# Save the plot to a file
plt.savefig('trigonometric_functions.png', dpi=300, bbox_inches='tight')
print("Plot saved as trigonometric_functions.png 🎨")
""")
# Download the generated image file
files = client.list_files()
img_file = next((f for f in files if f['path'] == 'trigonometric_functions.png'), None)
if img_file:
client.download_file(img_file['path'])
# Close the sandbox
client.close_sandbox()
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。