Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PROC_MCP_ALLOWNoComma-separated allowlist of commands (e.g. python3,r2,sh). Use "*" to allow everything. By default nothing is allowed.
UV_DEFAULT_INDEXNoMirror index for uv if PyPI is not reachable (e.g. https://pypi.tuna.tsinghua.edu.cn/simple).
PROC_MCP_ENV_DENYNoComma-separated denylist of environment variable overrides from clients.
PROC_MCP_ENV_ALLOWNoComma-separated allowlist of environment variable overrides from clients. Blocks PATH, LD_*, DYLD_* by default.
PROC_MCP_TMUX_KEY_DELAY_MSNoDelay in milliseconds between key submissions for tmux send_keys. Tune if a TUI needs slower timing.

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
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
open_sessionB

Spawn a stateful subprocess session (PTY by default). Returns a session id.

list_sessionsB

List active sessions.

sendC

Send raw input to a session's stdin.

readC

Read accumulated output from a session.

runB

Convenience: send a command then read until output is idle.

close_sessionC

Terminate a session and free resources.

tmux_open_sessionB

Start a detached tmux session running a command (useful for full-screen TUI apps like vim/htop). Returns a tmux session id.

tmux_list_sessionsA

List active tmux sessions created by this server.

tmux_send_keysA

Send key tokens to a tmux session's active pane (supports keys like Enter, Escape, C-c, Up, Down).

tmux_stepA

Send keys, wait briefly for redraw, then return a pane snapshot (one roundtrip for TUIs).

tmux_capture_paneB

Capture the current pane contents as text.

tmux_resizeC

Resize a tmux session window.

tmux_close_sessionC

Kill a tmux session created by this server.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.2/5.0

Scored across 13 tools

Disambiguation4/5

The tools are clearly split into regular subprocess sessions and tmux sessions, each with distinct lifecycles and the tmux_ prefix clearly marking the latter. However, send/read/run could be confused with tmux_send_keys/tmux_capture_pane/tmux_step if descriptions are not carefully read, so a small amount of ambiguity remains.

Naming Consistency3/5

Regular session tools mix verb_noun patterns (open_session, close_session) with bare verbs (send, read, run). Tmux tools are consistently prefixed with tmux_ but include both verb_noun (tmux_send_keys) and bare verb (tmux_step) forms. The mixed conventions are readable but not fully consistent.

Tool Count5/5

13 tools is well within the ideal range and appropriate for managing two types of interactive sessions (PTY and tmux). Each tool serves a distinct purpose in the workflow, and none feel redundant or excessive.

Completeness5/5

The tool set provides full lifecycle coverage for both regular and tmux sessions: open, list, send/read, and close, plus useful conveniences like run, step, capture, and resize. There are no obvious dead ends or missing core operations for interacting with external processes.

Maintenance

ActivityInactive
ResponsivenessNo issues