Skip to main content
Glama
flujo-app

mcp-sandbox-computer-vm-for-ai

by flujo-app

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
FLY_TOKENNoFly API token for the Fly Machines backend. Alternative to FLY_API_TOKEN.
FLY_REGIONNoRegion for newly created Fly Machines.
E2B_API_KEYNoE2B API key for the E2B backend.
FLY_APP_NAMENoFly App that owns sandbox Machines.
FLY_API_TOKENNoFly API token for the Fly Machines backend. Alternative to FLY_TOKEN.
MODAL_TOKEN_IDNoModal token ID for the Modal backend, overriding default authentication.
MODAL_TOKEN_SECRETNoModal token secret for the Modal backend, overriding default authentication.
KILNTAINERS_AUTH_TOKENNoBearer token for /mcp HTTP endpoint. Set to a random hex string to protect the MCP server.

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
terminal_executeA

Execute a shell command in an isolated Debian Linux sandbox. Commands run in bash. Each call is independent — no state (shell variables, working directory) persists between calls (however filesystem does persist). Use the working_directory parameter or chain commands with && to control execution context.

To write files or pass data without shell escaping, use the stdin parameter (e.g., command="cat > file.txt" with content in stdin). Commands time out after 120 seconds by default (override with the timeout parameter for long-running operations).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.7/5.0

Scored across 1 tool

Disambiguation5/5

There is only one tool, so there is no possibility of confusing it with another tool. Its purpose is clearly defined as executing shell commands in a sandboxed Linux environment.

Naming Consistency5/5

The single tool name terminal_execute follows a clear verb_noun pattern and accurately reflects its function. With only one tool, there are no naming inconsistencies or conflicting conventions.

Tool Count4/5

A one-tool server is minimal, but terminal_execute is a broad and powerful primitive that can handle filesystem operations, package management, script execution, and more. The count feels slightly thin but is justifiable for a sandbox execution server.

Completeness5/5

Arbitrary shell command execution covers the full range of expected sandbox operations, including reading, writing, modifying, and deleting files, as well as running processes and installing software. The stdin and timeout parameters further fill practical gaps.

Maintenance

ActivityMaintained
ResponsivenessNo issues