Uten Agent Terminal MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| bashC | 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. |
| python_codeC | This function will execute a python code and return the output. |
| python_fileC | This function will execute a python file and return the output. |
| globC | This function will return a list of files that match the given pattern. This function is useful for finding files in a directory. |
| grepB | This function will search for the given pattern in the specified file and return the matching lines. |
| read_fileB | This function will read the contents of a file and return it as a string. |
| write_fileC | This function will write the given content to a file. If the file does not exist, it will be created. |
| create_folderB | This function will create a folder with the given name. If the folder already exists, it will return a message indicating that the folder already exists. |
| delete_folderB | This function will delete a folder with the given name. If the folder does not exist, it will return a message indicating that the folder does not exist. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Most tools have distinct file/system purposes, but bash overlaps with write_file, create_folder, delete_folder, and Python execution since it can perform arbitrary commands. Descriptions still make the primary intent of each tool separable.
Names mix bare Unix command names (glob, grep, bash) with snake_case verb_noun patterns (read_file, write_file, create_folder). It is readable, but there is no single predictable naming convention throughout the set.
9 tools is well-scoped for a terminal/filesystem agent. Core capabilities like search, read, write, and execution are covered without excessive bloat.
The surface covers search, read, write, folder creation/deletion, bash, and Python execution. Explicit file deletion, move, copy, and rename are missing, but bash can work around these gaps.