get_cell_value
Retrieve specific cell values from CSV data using row and column coordinates. Supports column names or indexes and returns value with position and data type information for data analysis workflows.
Instructions
Get value of specific cell with coordinate targeting.
Supports column name or index targeting. Returns value with coordinates and data type information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row_index | Yes | Row index (0-based) to retrieve cell from | |
| column | Yes | Column name or column index (0-based) to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"column": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"description": "Column name or column index (0-based) to retrieve"
},
"row_index": {
"description": "Row index (0-based) to retrieve cell from",
"type": "integer"
}
},
"required": [
"row_index",
"column"
],
"type": "object"
}