RyTask docs
MCP tools

update_view

Update a saved view (name / scope / filters / sort / grouping / layout) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).

View as MarkdownOpen in ChatGPTOpen in Claude

Update a saved view (name / scope / filters / sort / grouping / layout).

Required permissionwork:write
Capability IDviews.update
DestructiveNo

Parameters

ParameterTypeRequiredNotes
namestringno
kindBOARD | LISTno
scopePERSONAL | SHAREDno
filtersobjectno
groupingobject | nullno
sortarray of objectno
layoutobject | nullno
idstring (uuid)yes

Input schema (JSON Schema)

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 120
    },
    "kind": {
      "type": "string",
      "enum": [
        "BOARD",
        "LIST"
      ]
    },
    "scope": {
      "type": "string",
      "enum": [
        "PERSONAL",
        "SHARED"
      ]
    },
    "filters": {
      "type": "object",
      "additionalProperties": {
        "anyOf": [
          {
            "type": "string"
          },
          {
            "type": "number"
          },
          {
            "type": "boolean"
          },
          {
            "type": "null"
          },
          {
            "type": "array",
            "items": {
              "description": "recursive — same shape as the parent node"
            }
          },
          {
            "type": "object",
            "additionalProperties": {
              "description": "recursive — same shape as the parent node"
            }
          }
        ]
      }
    },
    "grouping": {
      "anyOf": [
        {
          "type": "object",
          "additionalProperties": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "null"
              },
              {
                "type": "array",
                "items": {
                  "description": "recursive — same shape as the parent node"
                }
              },
              {
                "type": "object",
                "additionalProperties": {
                  "description": "recursive — same shape as the parent node"
                }
              }
            ]
          }
        },
        {
          "type": "null"
        }
      ]
    },
    "sort": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            },
            {
              "type": "boolean"
            },
            {
              "type": "null"
            },
            {
              "type": "array",
              "items": {
                "description": "recursive — same shape as the parent node"
              }
            },
            {
              "type": "object",
              "additionalProperties": {
                "description": "recursive — same shape as the parent node"
              }
            }
          ]
        }
      }
    },
    "layout": {
      "anyOf": [
        {
          "type": "object",
          "additionalProperties": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "number"
              },
              {
                "type": "boolean"
              },
              {
                "type": "null"
              },
              {
                "type": "array",
                "items": {
                  "description": "recursive — same shape as the parent node"
                }
              },
              {
                "type": "object",
                "additionalProperties": {
                  "description": "recursive — same shape as the parent node"
                }
              }
            ]
          }
        },
        {
          "type": "null"
        }
      ]
    },
    "id": {
      "type": "string",
      "format": "uuid"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false
}

Access control

A call succeeds only when the personal access token's scopes and the holder's role both allow work:write (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.

On this page