listTasks
Retrieve tasks from the Godspeed task application based on specific criteria such as list ID, status, or update timestamps. Integrate with the godspeed-mcp server to manage task data efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_id | No | ||
status | No | ||
updated_after | No | ||
updated_before | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"list_id": {
"type": "string"
},
"status": {
"enum": [
"incomplete",
"complete"
],
"type": "string"
},
"updated_after": {
"type": "string"
},
"updated_before": {
"type": "string"
}
},
"type": "object"
}