1.1.0npm · bash-mcp · current release
Observed 2026-08-17T13:40:56.902Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
kill_backgroundKill a background process by nameInput schema{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the background process to kill"
}
},
"required": [
"name"
]
} | — | — · — | — |
list_backgroundList all running background processesInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
runExecute a shell command and return outputInput schema{
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "Shell command to execute"
},
"cwd": {
"type": "string",
"description": "Working directory (optional)"
},
"timeout": {
"type": "number",
"description": "Timeout in milliseconds (default: 30000)"
}
},
"required": [
"command"
]
} | — | — · — | — |
run_backgroundRun a command in backgroundInput schema{
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "Command to run in background"
},
"name": {
"type": "string",
"description": "Unique name for this background process"
},
"cwd": {
"type": "string",
"description": "Working directory (optional)"
}
},
"required": [
"command",
"name"
]
} | — | — · — | — |