fast_read_file
Read and process files efficiently with automatic chunking support on the fast-filesystem-mcp server. Specify file path, start offset, max size, line range, or encoding for precise data extraction.
Instructions
파일을 읽습니다 (자동 청킹 지원)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_chunk | No | 자동 청킹 활성화 | |
continuation_token | No | 이전 호출의 연속 토큰 | |
encoding | No | 텍스트 인코딩 | utf-8 |
line_count | No | 읽을 라인 수 | |
line_start | No | 시작 라인 번호 | |
max_size | No | 읽을 최대 크기 | |
path | Yes | 읽을 파일 경로 | |
start_offset | No | 시작 바이트 위치 |
Input Schema (JSON Schema)
{
"properties": {
"auto_chunk": {
"default": true,
"description": "자동 청킹 활성화",
"type": "boolean"
},
"continuation_token": {
"description": "이전 호출의 연속 토큰",
"type": "string"
},
"encoding": {
"default": "utf-8",
"description": "텍스트 인코딩",
"type": "string"
},
"line_count": {
"description": "읽을 라인 수",
"type": "number"
},
"line_start": {
"description": "시작 라인 번호",
"type": "number"
},
"max_size": {
"description": "읽을 최대 크기",
"type": "number"
},
"path": {
"description": "읽을 파일 경로",
"type": "string"
},
"start_offset": {
"description": "시작 바이트 위치",
"type": "number"
}
},
"required": [
"path"
],
"type": "object"
}