We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9300b5b commit b11c9e0Copy full SHA for b11c9e0
1 file changed
src/filesystem/index.ts
@@ -100,7 +100,10 @@ const ReadFileArgsSchema = z.object({
100
});
101
102
const ReadMultipleFilesArgsSchema = z.object({
103
- paths: z.array(z.string()),
+ paths: z
104
+ .array(z.string())
105
+ .min(1, "At least one file path must be provided")
106
+ .describe("Array of file paths to read. Each path must be a string pointing to a valid file within allowed directories."),
107
108
109
const WriteFileArgsSchema = z.object({
0 commit comments