Tana MCP Server

create_checkbox_node

Input Schema

NameRequiredDescriptionDefault
checkedYes
descriptionNo
nameYes
supertagsNo
targetNodeIdNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "checked": { "type": "boolean" }, "description": { "type": "string" }, "name": { "type": "string" }, "supertags": { "items": { "additionalProperties": false, "properties": { "fields": { "additionalProperties": { "type": "string" }, "type": "object" }, "id": { "type": "string" } }, "required": [ "id" ], "type": "object" }, "type": "array" }, "targetNodeId": { "type": "string" } }, "required": [ "name", "checked" ], "type": "object" }