Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
LOG_PATH | No | Log files storage path. If not set, logs will be stored in the 'logs' folder under the application root directory. | logs |
CACHE_MAX_AGE | No | Cache expiration time in hours | 1 |
LOG_RETENTION_DAYS | No | Log retention period in days | 7 |
LOG_CLEANUP_INTERVAL | No | Log cleanup interval in hours | 24 |
CACHE_CLEANUP_INTERVAL | No | Cache cleanup interval in hours | 4 |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
analyzeExcelStructure | Get Excel file structure including sheet list and column headers in JSON format |
exportExcelStructure | Export Excel file structure (sheets and headers) to a new Excel template file |
readSheetNames | Get all sheet names from the Excel file |
readDataBySheetName | Get data from a specific sheet in the Excel file |
readSheetData | Get data from all sheets in the Excel file |
writeDataBySheetName | Write data to a specific sheet in the Excel file (overwrites if sheet exists) |
writeSheetData | Create a new Excel file with provided data |
clearFileCache | Clear cached data for the specified Excel file |