taskGetById
Retrieve specific task details by ID to enhance task management and streamline workflows within the GonMCPtool MCP server.
Instructions
根據ID獲取特定任務
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}