get_row_data
Retrieve specific row data from CSV files with optional column filtering. Converts pandas types for JSON serialization in DataBeak's MCP server.
Instructions
Get data from specific row with optional column filtering.
Returns complete row data or filtered by column list. Converts pandas types for JSON serialization.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row_index | Yes | Row index (0-based) to retrieve data from | |
| columns | No | Optional list of column names to retrieve (all columns if None) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Row data as column name to value mapping | |
| columns | Yes | List of column names included in data | |
| success | No | Whether operation completed successfully | |
| row_index | Yes | Row index (0-based) |