Skip to content

Commit 4ece373

Browse files
authored
feat: add E2B Code Sandbox MCP server definition (#37)
* 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 * fix: update server definition (input type 'password' -> 'text' for E2B_API_KEY) * fix: rename server files with transport suffix - dev.e2b-mcp.json -> dev.e2b-mcp-npx.json (id: dev.e2b-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 37d420c commit 4ece373

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/dev.e2b-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "dev.e2b-mcp-npx",
4+
"name": "E2B Code Sandbox (npx)",
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": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"e2b",
15+
"sandbox",
16+
"code-execution",
17+
"python",
18+
"javascript",
19+
"cloud"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@e2b/mcp-server"
27+
],
28+
"env": {
29+
"E2B_API_KEY": "${input:E2B_API_KEY}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "E2B_API_KEY",
35+
"label": "E2B API Key",
36+
"description": "API key for the E2B sandbox service.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "e2b_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
41+
"obtain": {
42+
"url": "https://e2b.dev/",
43+
"instructions": "1. Go to e2b.dev and sign up\n2. Open your dashboard\n3. Copy your API key from the dashboard",
44+
"button_label": "Get API Key"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Get an E2B API key at https://e2b.dev/"
53+
},
54+
"contributor": {
55+
"name": "E2B",
56+
"github": "e2b-dev",
57+
"url": "https://e2b.dev"
58+
},
59+
"links": {
60+
"repository": "https://github.com/e2b-dev/mcp-server",
61+
"homepage": "https://e2b.dev",
62+
"documentation": "https://e2b.dev/docs"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
}
73+
}

0 commit comments

Comments
 (0)