read_file
Read the contents of any file safely with configurable size limits.
Instructions
Read the content of any file, with size limits for safety.
Args:
file_path: Path to the file (relative to working directory or absolute)
max_size_kb: Maximum file size to read in KB (default: 1024)
Returns:
str: File content or an error messageInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| max_size_kb | No |