cli-mcp-server
by MladenSU
run_command
Allows command (CLI) execution in the directory: /app
Available commands: echo, date, whoami Available flags: -i, --version, --verbose
Note: Shell operators (&&, |, >, >>) are not supported.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Single command to execute (example: 'ls -l' or 'cat file.txt') |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Single command to execute (example: 'ls -l' or 'cat file.txt')",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}