Keboola Explorer MCP Server

get_table_preview

Get a preview of data from a specific table as CSV

Args: table_id: ID of the table to preview limit: Maximum number of rows to return (default: 100)

Input Schema

NameRequiredDescriptionDefault
limitNo
table_idYes

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 100, "title": "Limit", "type": "integer" }, "table_id": { "title": "Table Id", "type": "string" } }, "required": [ "table_id" ], "title": "get_table_previewArguments", "type": "object" }