SandboxRunner
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| run_codeA | Execute a Python or C++ code snippet inside an isolated, network-disabled Docker container and return its output. |
| list_supported_languagesA | List every programming language this sandbox can execute, along with the Docker image used to run it. |
| get_execution_historyA | Retrieve a log of recent code executions performed by run_code, most recent first. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: run_code executes code snippets, list_supported_languages returns available runtimes, and get_execution_history provides a log of past runs. There is no functional overlap.
All tool names follow the verb_noun pattern (run_code, list_supported_languages, get_execution_history) with consistent snake_case style.
Three tools is a well-scoped set for a code sandbox server. It covers the essential operations: running code, querying supported languages, and reviewing execution history, without unnecessary extras.
The tool surface is complete for the stated purpose of running code in an isolated sandbox. It includes language discovery, code execution, and history auditing, with no obvious missing functionality.