GonMCPtool

taskSearch

Search tasks by status, tags, priority, due date, or specific text to manage workflows effectively using GonMCPtool's TypeScript-based server.

Instructions

根據條件搜索任務

Input Schema

NameRequiredDescriptionDefault
filterYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "filter": { "additionalProperties": false, "properties": { "dueDateFrom": { "type": "string" }, "dueDateTo": { "type": "string" }, "priority": { "type": "number" }, "searchText": { "type": "string" }, "status": { "enum": [ "pending", "in_progress", "completed", "cancelled" ], "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" } }, "type": "object" } }, "required": [ "filter" ], "type": "object" }
ID: 8xcb3w59pl