export_history
Generate a file containing operation history from the CSV Editor MCP server. Specify session ID, file path, and format to export detailed records of data manipulation actions.
Instructions
Export operation history to a file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | ||
format | No | json | |
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
},
"format": {
"default": "json",
"title": "Format",
"type": "string"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"file_path"
],
"type": "object"
}