We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60eb7c2 commit fbec84bCopy full SHA for fbec84b
src/filesystem/index.ts
@@ -87,7 +87,10 @@ const ReadMediaFileArgsSchema = z.object({
87
});
88
89
const ReadMultipleFilesArgsSchema = z.object({
90
- paths: z.array(z.string()),
+ paths: z
91
+ .array(z.string())
92
+ .min(1, "At least one file path must be provided")
93
+ .describe("Array of file paths to read. Each path must be a string pointing to a valid file within allowed directories."),
94
95
96
const WriteFileArgsSchema = z.object({
0 commit comments