stop-background-task
Stop a running background task by its unique name using this MCP server tool, ensuring efficient management of long-running processes within compatible environments.
Instructions
Stops a running background task by its name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Unique name of the task to stop |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Unique name of the task to stop",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}