Tana MCP Server

create_file_node

Input Schema

NameRequiredDescriptionDefault
contentTypeYes
descriptionNo
fileDataYes
filenameYes
supertagsNo
targetNodeIdNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "contentType": { "type": "string" }, "description": { "type": "string" }, "fileData": { "type": "string" }, "filename": { "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": [ "fileData", "filename", "contentType" ], "type": "object" }