Appearance
Views
Saved filters and layouts over records and tasks.
5 tools — 2 read, 3 write.
| Tool | What it does | |
|---|---|---|
create_view | write | Create a saved view (filter / sort / group / columns) for the tasks list or a specific collection. |
delete_view | write | Delete a saved view. |
get_view | read | Get a saved view by ID. |
list_views | read | List saved views for the tasks list (resourceType='tasks') or a specific collection (resourceType='collection' + resourceId). |
update_view | write | Update a saved view — rename, edit the description, change filters/sort/group/columns, or toggle isDefault. |
Calling these
Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.
See How the API works for auth, errors and the shared envelope.