update_table_row
Modify specific table rows in RBT documents by updating cell values at designated row positions within structured tables.
Instructions
Update specific table row.
Args:
project_id: Project identifier
block_id: Table block ID
row_index: Row index to update (0-based, excluding header)
row_data: New row data (list of cell values)
feature_id: Feature identifier (for RBT documents)
doc_type: Document type - REQ/BP/TASK (for RBT documents)
file_path: File path relative to docs/ (for general documents)
Returns:
Success message
Example:
update_table_row(
project_id="knowledge-smith",
feature_id="rbt-mcp-tool",
doc_type="BP",
block_id="blk-component-spec-table",
row_index=0,
row_data=["PathResolver", "Updated description", "new input", "new output"]
)
@REQ: REQ-rbt-mcp-tool
@BP: BP-rbt-mcp-tool
@TASK: TASK-013-UpdateTableRowTool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_id | Yes | ||
doc_type | No | ||
feature_id | No | ||
file_path | No | ||
project_id | Yes | ||
row_data | Yes | ||
row_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"block_id": {
"title": "Block Id",
"type": "string"
},
"doc_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Doc Type"
},
"feature_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Feature Id"
},
"file_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "File Path"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"row_data": {
"items": {
"type": "string"
},
"title": "Row Data",
"type": "array"
},
"row_index": {
"title": "Row Index",
"type": "integer"
}
},
"required": [
"project_id",
"block_id",
"row_index",
"row_data"
],
"type": "object"
}