Excel MCP Server

update_excel

Modify an existing Excel file by adding new data in CSV or JSON format. Specify the file path, input data format, and target sheet for accurate updates.

Instructions

Update an existing Excel file with new data. Args: file_path: Path to the Excel file to update data: New data in CSV or JSON format sheet_name: Name of the sheet to update (for Excel files) format: Format of the input data ('csv' or 'json') Returns: Confirmation message

Input Schema

NameRequiredDescriptionDefault
dataYes
file_pathYes
formatNocsv
sheet_nameNoSheet1

Input Schema (JSON Schema)

{ "properties": { "data": { "title": "Data", "type": "string" }, "file_path": { "title": "File Path", "type": "string" }, "format": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "csv", "title": "Format" }, "sheet_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "Sheet1", "title": "Sheet Name" } }, "required": [ "file_path", "data" ], "title": "update_excelArguments", "type": "object" }

You must be authenticated.

Other Tools from Excel MCP Server

Related Tools

ID: vda5rccucp