Keboola Explorer MCP Server
by keboola
get_table_preview
Get a preview of data from a specific table as CSV
Copy
Args:
table_id: ID of the table to preview
limit: Maximum number of rows to return (default: 100)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
table_id | Yes |
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"
}