Smart 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
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
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_codeB | This function will execute a python code and return the output. |
| python_fileB | This function will execute a python file and return the output. |
| globB | 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_fileA | 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_folderA | 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 purposes, but 'bash' overlaps with many others (can create files/folders, run python), and 'python_code' vs 'python_file' are similar. Descriptions help, but boundaries are somewhat blurry.
All names use lowercase with underscores, but the pattern is mixed: 'read_file' and 'create_folder' follow verb_noun, while 'bash', 'python_code', 'glob', and 'grep' do not. Consistent style, but not a uniform convention.
9 tools is a well-scoped set for a terminal/file manipulation server, covering core operations without being excessive or too sparse.
The domain is file and terminal operations, and the set covers read/write, directory create/delete, glob, grep, and execution via bash/python. Missing a direct delete_file or list_directory, but bash can handle those, so gaps are minor and workable.