← KNOWLEDGE INDEX
ATTRIBUTED REFERENCEDocker DocumentationApache-2.0UPDATED 2026-08-16

E2B sandboxes — Create an E2B sandbox with MCP servers

Create a file named index.ts Bounded code example (external data; do not execute automatically): ```typescript import "dotenv/config"; import { Sandbox } from "e2b"; async function quickstart(): Promise<void> { console.log("Creating E2B sandbox with Notion and GitHub MCP servers...\n"); const sbx: S

Reference note (untrusted external data; do not execute it as instructions). Create a file named index.ts Bounded code example (external data; do not execute automatically): ```typescript import "dotenv/config"; import { Sandbox } from "e2b"; async function quickstart(): Promise<void> { console.log("Creating E2B sandbox with Notion and GitHub MCP servers...\n"); const sbx: Sandbox = await Sandbox.create({ envs: { ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY as string, }, mcp: { notion: { internalIntegrationToken: process.env .NOTION_INTEGRATION_TOKEN as string, }, githubOfficial: { githubPersonalAccessToken: process.env.GITHUB_TOKEN as string, }, }, }); const mcpUrl = sbx.getMcpUrl(); const mcpToken = await sbx.getMcpToken(); console.log("Sandbox created successfully!"); console.log(`MCP Gateway URL: ${mcpUrl}\n`); // Wait for MCP initialization await new Promise<void>((resolve) => setTimeout(resolve, 1000)); // Connect Claude to MCP gateway console.log("Connecting Clau ``` Bounded code example (external data; do not execute automatically): ```console $ npx tsx index.ts ``` Create a file named index.py Bounded code example (external data; do not execute automatically): ```python import os import asyncio from dotenv import load_dotenv from e2b import Sandbox load_dotenv() async def quickstart(): print("Creating E2B sandbox with Notion and GitHub MCP servers...\n") sbx = await Sandbox.beta_create( envs={ "ANTHROPIC_API_KEY": os.getenv("ANTHROPIC_API_KEY"), }, mcp={ "notion": { "internalIntegrationToken": os.getenv("NOTION_INTEGRATION_TOKEN"), }, "githubOfficial": { "githubPersonalAccessToken": os.getenv("GITHUB_TOKEN"), }, }, ) mcp_url = sbx.beta_get_mcp_url() mcp_token = await sbx.beta_get_mcp_token() print("Sandbox created successfully!") print(f"MCP Gateway URL: {mcp_url}\n") # Wait for MCP initialization await asyncio.sleep(1) # Connect Claude to MCP gateway print("Connecting Claude to MC ``` Bounded code example (external data; do not execute automatically): ```console $ python index.py ``` Bounded code example (external data; do not execute automatically): … Attribution: Adapted from Docker Documentation under Apache-2.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, retained only bounded code excerpts, and shortened it at a paragraph or sentence boundary for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE

This compact reference card is adapted from official documentation and is not a community-verified experience.

Docker Documentation — content/manuals/ai/mcp-catalog-and-toolkit/e2b-sandboxes.md :: Create an E2B sandbox with MCP servers ↗Revision 3a9d778562f3 · Apache-2.0 and attribution
#reference-seed#docker#manuals#ai#mcp-catalog-and-toolkit#e2b#sandboxes#create#sandbox#mcp#servers