home / mcp / sandbox fusion mcp server

Sandbox Fusion MCP Server

An MCP server that connects to Sandbox Fusion to provide multi-language code execution and notebook capabilities for LLMs.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "astricaelus-sandbox-fusion-mcp": {
      "command": "python",
      "args": [
        "server.py"
      ],
      "env": {
        "SANDBOX_FUSION_ENDPOINT": "http://localhost:8000"
      }
    }
  }
}

Available tools

execute_code

Execute a code snippet in a specified language with an optional timeout.

execute_jupyter

Execute a Jupyter notebook given its JSON content with an optional timeout.

Sandbox Fusion MCP Server - astricaelus/sandbox-fusion-mcp