read_file
Fetch file content from your Achi drive by ID. Use rangeStart/rangeEnd to read large files in chunks, with text, images, or binary handled automatically.
Instructions
Download a file and return its content inline. Default cap: 1 MB; absolute cap: 5 MB. For larger files, pass rangeStart/rangeEnd to fetch a specific byte range. Text mime types return as text. Images return as MCP image content. Other binaries return as embedded resource.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| maxBytes | No | Cap on returned size. Combined with rangeStart for sliding-window reads. | |
| rangeEnd | No | Byte offset to end at (inclusive). Omit for end-of-file. | |
| rangeStart | No | Byte offset to start at (inclusive). |