MCP Server
Python Exec Sandbox MCP Server
io.github.lu-zhengda/mcp-python-exec-sandbox
What is the Python Exec Sandbox MCP server?
Sandboxed Python execution for AI agents. PEP 723 inline deps, multi-version Python, zero pollution.
How to install Python Exec Sandbox
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-python-exec-sandbox": {
"command": "uvx",
"args": [
"mcp-python-exec-sandbox"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-python-exec-sandbox": {
"command": "uvx",
"args": [
"mcp-python-exec-sandbox"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-python-exec-sandbox": {
"command": "uvx",
"args": [
"mcp-python-exec-sandbox"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-python-exec-sandbox": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-python-exec-sandbox"
]
}
}
}Claude Code
claude mcp add mcp-python-exec-sandbox -- uvx mcp-python-exec-sandboxRelated MCP servers
PostgreSQL-backed virtual filesystem for agents: session isolation, shared stores, POSIX ops, RLS.
View repository →