insert_rows
Add one or more rows into an Excel sheet starting at a specified row using xlwings Excel MCP Server. Ideal for corporate environments requiring secure Excel file manipulation.
Instructions
Insert one or more rows starting at the specified row.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| count | No | ||
| filepath | Yes | ||
| sheet_name | Yes | ||
| start_row | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "count": {
      "default": 1,
      "title": "Count",
      "type": "integer"
    },
    "filepath": {
      "title": "Filepath",
      "type": "string"
    },
    "sheet_name": {
      "title": "Sheet Name",
      "type": "string"
    },
    "start_row": {
      "title": "Start Row",
      "type": "integer"
    }
  },
  "required": [
    "filepath",
    "sheet_name",
    "start_row"
  ],
  "title": "insert_rowsArguments",
  "type": "object"
}