Python execute

python_execute

Run Python in a Pyodide sandbox with optional PEP 723 requirements.

Remote STUzhy/py_execute_mcp

Other tools also called python_execute? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Python code to execute"
    },
    "context": {
      "type": "object",
      "additionalProperties": {}
    },
    "timeout": {
      "type": "integer",
      "default": 60000,
      "exclusiveMinimum": 0
    },
    "requirements": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}