@vint.tri/report_gen_mcp 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -86,7 +86,7 @@ if (process.argv.length === 2) {
|
|
|
86
86
|
}),
|
|
87
87
|
})).describe("Chart configurations mapped by ID"),
|
|
88
88
|
outputFile: zod_1.z.string().optional().describe("Output HTML file path"),
|
|
89
|
-
tempDirectory: zod_1.z.string().
|
|
89
|
+
tempDirectory: zod_1.z.string().describe("Temporary directory for file storage (required to prevent read-only file system errors)"),
|
|
90
90
|
},
|
|
91
91
|
}, async (params) => {
|
|
92
92
|
// Handle case where arguments might be sent as a JSON string by Claude desktop
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -92,7 +92,7 @@ if (process.argv.length === 2) {
|
|
|
92
92
|
}),
|
|
93
93
|
})).describe("Chart configurations mapped by ID"),
|
|
94
94
|
outputFile: z.string().optional().describe("Output HTML file path"),
|
|
95
|
-
tempDirectory: z.string().
|
|
95
|
+
tempDirectory: z.string().describe("Temporary directory for file storage (required to prevent read-only file system errors)"),
|
|
96
96
|
},
|
|
97
97
|
}, async (params: any) => {
|
|
98
98
|
// Handle case where arguments might be sent as a JSON string by Claude desktop
|