Skip to content

Commit 1aa83ed

Browse files
claudeits-mash
authored andcommitted
Add E2B Code Sandbox MCP server definition
Official E2B MCP server for secure cloud sandboxes. Execute Python and JavaScript code, manage files, and install packages. Uses @e2b/mcp-server npm package. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 1aa83ed

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/dev.e2b-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "dev.e2b-mcp",
4+
"name": "E2B Code Sandbox",
5+
"alias": "e2b",
6+
"description": "Execute Python and JavaScript code in secure cloud sandboxes. Create files, install packages, and manage sandbox environments.",
7+
"icon": "https://avatars.githubusercontent.com/u/129434473?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools", "cloud"],
10+
"tags": ["e2b", "sandbox", "code-execution", "python", "javascript", "cloud"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@e2b/mcp-server"],
16+
"env": {
17+
"E2B_API_KEY": "${input:E2B_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "E2B_API_KEY",
23+
"label": "E2B API Key",
24+
"description": "API key for the E2B sandbox service.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "e2b_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://e2b.dev/",
31+
"instructions": "1. Go to e2b.dev and sign up\n2. Open your dashboard\n3. Copy your API key from the dashboard",
32+
"button_label": "Get API Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get an E2B API key at https://e2b.dev/"
42+
},
43+
44+
"contributor": {
45+
"name": "E2B",
46+
"github": "e2b-dev",
47+
"url": "https://e2b.dev"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/e2b-dev/mcp-server",
52+
"homepage": "https://e2b.dev",
53+
"documentation": "https://e2b.dev/docs"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)