get_history
Retrieve the operation history for a specific session in the CSV Editor MCP server, using a session ID to track and manage data processing actions effectively.
Instructions
Get operation history for a session.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}