ToolBox MCP Server

by xiaoguomeiyitian
Verified

schedule_tool

Input Schema

NameRequiredDescriptionDefault
actionYesAction type (create/cancel/list)
delaySecondsNoDelay execution by N seconds
idNoTask ID (required for cancel)
intervalNoRecurring interval pattern (e.g. 'every@5m')
timeNoAbsolute execution time (YYYY-MM-DD HH:mm:ss)
toolArgsNoParameters for the target tool
toolNameNoTool to execute (e.g. 'time_tool')

Input Schema (JSON Schema)

{ "description": "Manage scheduled tasks (create/cancel/list)", "name": "schedule_tool", "properties": { "action": { "description": "Action type (create/cancel/list)", "enum": [ "create", "cancel", "list", "cancel_all_once", "cancel_all_recurring" ], "type": "string" }, "delaySeconds": { "description": "Delay execution by N seconds", "type": "number" }, "id": { "description": "Task ID (required for cancel)", "type": "string" }, "interval": { "description": "Recurring interval pattern (e.g. 'every@5m')", "type": "string" }, "time": { "description": "Absolute execution time (YYYY-MM-DD HH:mm:ss)", "type": "string" }, "toolArgs": { "description": "Parameters for the target tool", "type": "object" }, "toolName": { "description": "Tool to execute (e.g. 'time_tool')" } }, "required": [ "action" ], "type": "object" }