get-task-stdout
Retrieve the standard output (stdout) of a running background task by specifying its unique name, enabling real-time monitoring and debugging within the MCP Background Task Server.
Instructions
Retrieves the stdout of a running background task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Unique name of the task |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Unique name of the task",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}