Delete Bike Rows
bike_delete_rowDelete specified rows and their children permanently from a Bike document using row IDs.
Instructions
Deletes one or more rows from the document.
WARNING: This is a destructive operation. Deleted rows and all their children will be permanently removed. This action cannot be undone via the MCP server (though Bike's undo may work if used immediately).
Args:
row_ids (string[], required): Array of row IDs to delete.
Returns: Confirmation with count: "Deleted 3 row(s)"
Examples:
Delete one row: bike_delete_row({ row_ids: ["Kx9"] })
Delete multiple: bike_delete_row({ row_ids: ["Kx9", "Lm2", "Np4"] })
Errors:
"Bike is not running" - Open Bike app first
"No document is open" - Open a document first
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row_ids | Yes | Array of row IDs to delete. Children will also be deleted. |