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