script-runner
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@script-runnerrun a python script that prints 'Hello from Docker'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
script-runner
Remote MCP server that launches user-supplied scripts inside disposable Docker containers and tracks them asynchronously.
An AI client submits a base64 one-liner (plus an optional base64 zip of source
files) and a runtime. The call returns a task_id immediately; the script runs in
a separate worker. The client polls for status and gets bounded stdout/stderr tails
so results never overflow its context window.
Runtimes
value | image |
|
|
|
|
|
|
The one-liner runs in /workspace, where the zip (if any) is extracted.
Related MCP server: async-bash-mcp
Transport & auth
Stateless MCP Streamable HTTP at POST /mcp. Every request must carry
Authorization: Bearer <SCRIPT_RUNNER_TOKEN>. GET /healthz is open.
Tools
run_script—{ runtime, command_base64, zip_base64?, timeout_seconds? }→{ task_id }. Enqueues and returns instantly.timeout_secondsdefaults to 300 (server-capped).get_task_status—{ task_id, tail_bytes? }→{ state, exit_code, reason, runtime_seconds, seconds_since_last_output, stdout_tail, stderr_tail, ... }.state∈queued | running | succeeded | failed | killed | timed-out. Useseconds_since_last_outputto detect a stuck task;*_truncatedflags mark clipped tails.kill_task—{ task_id }→ stops a queued or running task.
Safety & limits
Each task runs in its own container: CapDrop: ALL, no-new-privileges, memory /
CPU / PID caps, and an isolated bridge network (internet reachable, app not). Hard
wall-clock timeouts kill runaways; a reaper enforces timeouts and GCs old task
dirs; on restart, in-flight tasks are marked killed and orphan containers removed.
Local development
npm install
cp .env.example .env # set SCRIPT_RUNNER_TOKEN, e.g. openssl rand -hex 32
export TASKS_DIR=$PWD/tasks-data
npm run dev # requires a local Docker daemonnpm run typecheck runs tsc --noEmit.
Deployment
A Linux host behind Caddy (automatic TLS). One-time: deploy/setup-host.sh.
Each push to main triggers .github/workflows/deploy.yml, which SSHes in and
runs deploy/deploy.sh (git reset --hard origin/main +
docker compose up -d --build). The bearer token lives only in the host's .env.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityFmaintenanceMCP server to give every agent an ephemeral Linux sandboxes for executing shell commands.Last updated145MIT- Alicense-qualityDmaintenanceAn MCP server for spawning and managing bash commands asynchronously. Run multiple shell commands in parallel and check their progress independently.Last updated6MIT
- AlicenseBqualityBmaintenanceDynamic MCP server for Node.js enabling runtime tool creation, management, and execution in isolated sandboxes (Docker or Node).Last updated8311MIT
- Alicense-qualityDmaintenanceMCP server for secure, session-based Python code execution in Docker containers, enabling LLM applications to run code, manage state, and access files.Last updated9MIT
Related MCP Connectors
Remote MCP server for RunComfy Serverless API (ComfyUI): deployments and async inference.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP server for the FFmpeg Micro video transcoding API — create, monitor, download transcodes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/oyren-ai/oyren-ai-composer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server