Skip to main content
Glama
philschmid

Code Sandbox MCP Server

by philschmid
const.py798 B
import os from typing import Literal EXECUTION_TIMEOUT: int = 30 DEFAULT_BACKEND: str = os.getenv("BACKEND", "podman") VERBOSE: bool = os.getenv("VERBOSE", "false").lower() == "true" DEFAULT_LANGUAGE: Literal["python", "javascript", "go"] = "python" DEFAULT_ENVIRONMENT_MAP = { "python": { "image": "philschmi/code-sandbox-python:latest", "installed_libraries": "numpy, pandas, matplotlib, scikit-learn, requests, google-genai", }, "javascript": { "image": "philschmi/code-sandbox-js:latest", "installed_libraries": "@google/genai", }, # "bash": { # "image": "bash:latest", # "installed_libraries": "", # }, # "go": { # "image": "golang:1.22", # "installed_libraries": DEFAULT_GO_LIBRARIES, # }, }

Implementation Reference

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/philschmid/code-sandbox-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server