forked from lu-zhengda/mcp-python-exec-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
39 lines (39 loc) · 1.2 KB
/
server.json
File metadata and controls
39 lines (39 loc) · 1.2 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.lu-zhengda/mcp-python-exec-sandbox",
"title": "Python Exec Sandbox",
"description": "Sandboxed Python execution for AI agents. PEP 723 inline deps, multi-version Python, zero pollution.",
"repository": {
"url": "https://github.com/lu-zhengda/mcp-python-exec-sandbox",
"source": "github"
},
"version": "0.1.5",
"packages": [
{
"registryType": "pypi",
"identifier": "mcp-python-exec-sandbox",
"version": "0.1.5",
"transport": {
"type": "stdio"
},
"arguments": [
{
"type": "named",
"name": "--sandbox-backend",
"description": "Sandbox backend: native (bwrap, Linux only), docker, or none. Defaults to native on Linux, docker on macOS.",
"isRequired": false,
"format": "string",
"value": "docker"
},
{
"type": "named",
"name": "--python-version",
"description": "Python version for script execution (e.g. 3.13, 3.14).",
"isRequired": false,
"format": "string",
"value": "3.13"
}
]
}
]
}