Read File Contents
file_organizer_read_fileSecurely read file contents with automatic type detection, multiple encoding options, and protection that blocks sensitive credentials. Supports offsets and size limits.
Instructions
Read file contents with security checks. Supports text, binary, and base64 encoding. Automatically detects file type and applies appropriate security validations. Sensitive files (passwords, keys, credentials) are automatically blocked.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute path to the file to read (e.g., /home/user/documents/report.txt) | |
| limit | No | Maximum bytes to read (alternative to maxBytes) | |
| offset | No | Byte offset to start reading from | |
| encoding | No | Text encoding for the file content | utf-8 |
| maxBytes | No | Maximum bytes to read (default: 10MB, max: 100MB) | |
| response_format | No | Format of the response | markdown |
| calculateChecksum | No | Include SHA-256 checksum in response |