get-task-stderr
Retrieve the stderr output of a specific background task to monitor errors or debug issues efficiently using the MCP Background Task Server.
Instructions
Retrieves the stderr 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"
}