经 AI Skill Hub 精选评估,agent-sandbox MCP工具 获评「强烈推荐」。这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
企业级AI代理沙箱环境,兼容E2B规范。提供安全隔离的代码执行、浏览器自动化和工具调用能力,适合AI Agent开发者构建可信的应用系统。
agent-sandbox MCP工具 是一款基于 Go 开发的开源工具,专注于 沙箱、MCP、代码执行 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
企业级AI代理沙箱环境,兼容E2B规范。提供安全隔离的代码执行、浏览器自动化和工具调用能力,适合AI Agent开发者构建可信的应用系统。
agent-sandbox MCP工具 是一款基于 Go 开发的开源工具,专注于 沙箱、MCP、代码执行 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:go install(推荐) go install github.com/agent-sandbox/agent-sandbox@latest # 方式二:从源码编译 git clone https://github.com/agent-sandbox/agent-sandbox cd agent-sandbox go build -o agent-sandbox . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/agent-sandbox/agent-sandbox/releases
# 查看帮助 agent-sandbox --help # 基本运行 agent-sandbox [options] <input> # 详细使用说明请查阅文档 # https://github.com/agent-sandbox/agent-sandbox
# agent-sandbox 配置说明 # 查看配置选项 agent-sandbox --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export AGENT_SANDBOX_CONFIG="/path/to/config.yml"
<p align="center"><b> Agent-Sandbox is an open-sourced <a href="https://docs.blaxel.ai/Sandboxes/Overview">Blaxel Sandbox</a> or <a href="https://e2b.dev/">E2B</a> like solution! </b>
<b>🎉🎉🎉 Complete compatible with <a href="https://e2b.dev/">E2B</a> protocol and SDKs.✅</b> </p> <br/> <p align="center">Agent-Sandbox is an enterprise-grade ai-first, cloud-native, high-performance runtime environment designed for AI Agents. It combines the Kubernetes with container isolation. Allows Agents to securely run untrusted LLM-generated Code, Browser use, Computer use, and Shell commands etc. with stateful, long-running, multi-session and multi-tenant.</p> </div>
<hr/>
---
examples/ directory.You can install Agent-Sandbox by applying the provided install.yaml file to your Kubernetes cluster.
requires Kubernetes version 1.26 or higher.
kubectl create namespace agent-sandbox
kubectl apply -nagent-sandbox -f install.yaml You can create an ingress or port-forward to access the Agent-Sandbox API server. Ingress like this: apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: agent-sandbox
namespace: agent-sandbox
spec:
ingressClassName: ingress-nginx
rules:
- host: agent-sandbox.your-host.com
http:
paths:
- backend:
service:
name: agent-sandbox
port:
number: 80
path: / Now you can access the Agent-Sandbox API server at http://agent-sandbox.your-host.com.
The Agent-Sandbox provides a RESTful API or MCP to manage sandboxes. The typical workflow involves creating a sandbox, accessing it, and then deleting it when no longer needed.
You can also manage sandboxes manually using the RESTful API provided by Agent-Sandbox.
#### I, Create a Sandbox You can create a new sandbox by sending a POST request to the /api/v1/sandbox endpoint with the desired configuration. For example, to create an aio sandbox and name it sandbox-01, you can use the following curl command or programmatically call the API:
|
Shell for China user, please specify the local aio image registry to improve the pull speed:
</td> <td> Python </td> </tr> </table>
Result
#### II, Access to Sandbox Now you can access to the previously created sandbox-01 sandbox using You will see: Use agent sandbox SDK access this sandbox: ```python from agent_sandbox import Sandbox
🎯 aiskill88 AI 点评
A 级
2026-05-20
Go实现的高性能沙箱解决方案,架构清晰易于集成。E2B兼容性强,适合企业级Agent应用部署,活跃维护中。 📚 实用指南(长尾问题)
适合谁
最佳实践
常见错误
部署方案
⚡ 核心功能
👥 适合谁
⭐ 最佳实践
⚠️ 常见错误
👥 适合人群🎯 使用场景
⚖️ 优点与不足✅ 优点
⚠️ 不足
⚠️ 使用须知
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。 建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。 📄 License 说明
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。 🔗 相关工具推荐📚 相关教程推荐 📰 相关 AI 新闻
🍿 AI 圈相关吃瓜
🧩 你可能还需要
基于当前 Skill 的能力图谱,自动补全的工具组合
❓ 常见问题 FAQAgent-Sandbox是E2B兼容的轻量级替代方案,更易部署和定制,适合企业自建。
💡 AI Skill Hub 点评
AI Skill Hub 点评:agent-sandbox MCP工具 的核心功能完整,质量优秀。对于AI爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。 🌐 原始信息
🔗 原始来源
🐙 GitHub 仓库 https://github.com/agent-sandbox/agent-sandbox
🌐 官方网站 https://agent-sandbox.github.io
收录时间:2026-05-19 · 更新时间:2026-05-19 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。 |