Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

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

Tools

Functions exposed to the LLM to take actions

NameDescription
set_cwdA
Set the global working directory for bash commands.

Args:
    path: The absolute path to use as the new working directory.

Returns:
    A confirmation message.
execute_bashA
Run a bash command in the global working directory.

Args:
    cmd: The shell command to execute.

Returns:
    A tuple (stdout, stderr) from the command execution.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: one sets the working directory, the other executes commands. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tools follow the same verb_noun pattern: set_cwd and execute_bash. The naming is predictable and consistent.

Tool Count5/5

With only two tools, the set is minimal yet sufficient for its scope. Each tool serves a necessary function without unnecessary bloat.

Completeness4/5

The core functionality of a bash server is covered: setting the working directory and executing commands. Minor gaps like environment variable management exist but are not critical for basic operations.

Maintenance

ActivityNo data
ResponsivenessNo issues