fast_read_multiple_files
Reads contents of multiple files simultaneously with sequential support, auto-continuation, and customizable chunk size for efficient file processing on the fast-filesystem-mcp server.
Instructions
여러 파일의 내용을 동시에 읽습니다 (순차적 읽기 지원)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_continue | No | 자동으로 전체 파일 읽기 (기본값: true) | |
chunk_size | No | 청크 크기 (바이트, 기본값: 1MB) | |
continuation_tokens | No | 파일별 continuation token (이전 호출에서 반환된 값) | |
paths | Yes | 읽을 파일 경로들 |
Input Schema (JSON Schema)
{
"properties": {
"auto_continue": {
"default": true,
"description": "자동으로 전체 파일 읽기 (기본값: true)",
"type": "boolean"
},
"chunk_size": {
"default": 1048576,
"description": "청크 크기 (바이트, 기본값: 1MB)",
"type": "number"
},
"continuation_tokens": {
"description": "파일별 continuation token (이전 호출에서 반환된 값)",
"type": "object"
},
"paths": {
"description": "읽을 파일 경로들",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}