Excel MCP Server

write_excel

Write data to an Excel file by specifying file path, input data format (CSV/JSON), and sheet name. Simplified Excel file creation for structured data handling.

Instructions

Write data to an Excel file. Args: file_path: Path to save the Excel file data: Data in CSV or JSON format sheet_name: Name of the sheet (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": "write_excelArguments", "type": "object" }

You must be authenticated.

Other Tools from Excel MCP Server

Related Tools

ID: vda5rccucp