Skip to main content
Glama
dev-vieester

Uten Agent Terminal MCP

by dev-vieester

Bash

bash

Run shell commands to create files, directories, and manage system operations, returning command output for AI agent workflows.

Instructions

This function will execute a bash command and return the output. This function is useful for executing bash commands including creating files, directories, and other bash commands.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
commandYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description must carry the full behavioral burden, and it does not. It implies filesystem mutation via 'creating files, directories' but says nothing about permissions, sandboxing, working directory, timeouts, destructive potential, or how stdout/stderr are surfaced.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Only two sentences, which is appropriately short, but the second largely restates the first ('executing bash commands' after 'execute a bash command'), so it is not tightly front-loaded or waste-free.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a high-risk, unannotated, single-parameter tool with no output schema and no parameter documentation, the description should cover mutation semantics, failure behavior, and output shape. It covers none of these, leaving significant gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single 'command' parameter has 0% schema description coverage, so the description is the only source of meaning. 'Bash command' hints at a shell string but adds no detail on quoting, environment, execution context, or working directory.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'execute a bash command and return the output.' It is clearly the shell-execution escape hatch, but it never names or contrasts with siblings such as python_code or write_file, so the boundary is left to inference.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use or when-not-to-use guidance is given. The only context is 'useful for executing bash commands including creating files, directories,' which actually overlaps with the write_file and create_folder siblings and could steer the agent toward the wrong tool rather than away from it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.