Xano MCP Server

create_table

Create a new table in a workspace

Input Schema

NameRequiredDescriptionDefault
descriptionNoOptional description for the table
docsNoOptional documentation for the table
nameYesName of the table to create
workspaceIdYesID of the workspace to create the table in

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "description": { "description": "Optional description for the table", "type": "string" }, "docs": { "description": "Optional documentation for the table", "type": "string" }, "name": { "description": "Name of the table to create", "type": "string" }, "workspaceId": { "description": "ID of the workspace to create the table in", "type": "number" } }, "required": [ "name", "workspaceId" ], "type": "object" }