execute_command
Run shell commands as background jobs using a job ID for tracking and management. Enables asynchronous execution and monitoring of long-running processes on the MCP Background Job Server.
Instructions
Execute a command as a background job and return job ID.
Args: command: Shell command to execute in the background
Returns: ExecuteOutput containing the job ID (UUID) of the started job
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Shell command to execute |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Shell command to execute",
"title": "Command",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}