taskRecurrentUpdate
Modify recurrent tasks on the Routine MCP server by updating details like parent, recurrence, notes, title, or URL to streamline task management.
Instructions
Patch a recurrent task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
patch | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"patch": {
"additionalProperties": false,
"properties": {
"notes": {
"anyOf": [
{
"type": "null"
},
{
"additionalProperties": false,
"properties": {
"blocks": {
"items": {
"allOf": [
{
"additionalProperties": {},
"type": "object"
},
{
"anyOf": [
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {
"const": "blockquote",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"depth": {
"type": "integer"
},
"id": {
"type": "string"
},
"list_type": {
"enum": [
"ordered",
"unordered"
],
"type": "string"
},
"type": {
"const": "bullet",
"type": "string"
}
},
"required": [
"depth"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"checked": {
"type": "boolean"
},
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {
"const": "check",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"language": {
"type": "string"
},
"type": {
"const": "code",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {
"const": "callout",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"type": {
"const": "divider",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {
"const": "embed",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"level": {
"type": "integer"
},
"retracted": {
"type": "boolean"
},
"type": {
"const": "heading",
"type": "string"
}
},
"required": [
"retracted"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {
"const": "paragraph",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {
"const": "query",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"recurrence": {
"allOf": [
{
"additionalProperties": {},
"type": "object"
},
{
"anyOf": [
{
"additionalProperties": false,
"properties": {
"count": {
"type": "integer"
},
"rule": {},
"start": {}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"end": {},
"rule": {},
"start": {}
},
"type": "object"
}
]
}
]
},
"recurrent_task_id": {
"type": "string"
},
"type": {
"const": "recurrent_task",
"type": "string"
}
},
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"checked": {
"type": "boolean"
},
"content": {
"type": "string"
},
"id": {
"type": "string"
},
"task": {
"type": "string"
},
"type": {
"const": "todo",
"type": "string"
}
},
"type": "object"
}
]
}
]
},
"type": "array"
}
},
"type": "object"
}
],
"default": null
},
"parent": {
"anyOf": [
{
"type": "null"
},
{
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"kind": {
"enum": [
"event",
"event-rec",
"page",
"people",
"task",
"task-rec"
],
"type": "string"
}
},
"type": "object"
}
],
"default": null
},
"recurrence": {
"anyOf": [
{
"type": "null"
}
],
"default": null
},
"title": {
"default": null,
"type": [
"null",
"string"
]
},
"url": {
"default": null,
"type": [
"null",
"string"
]
}
},
"type": "object"
}
},
"required": [
"id",
"patch"
],
"type": "object"
}