@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 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().optional().describe("Temporary directory for file storage (defaults to current working directory if not specified)"),
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vint.tri/report_gen_mcp",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "CLI tool for generating HTML reports with embedded charts",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
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().optional().describe("Temporary directory for file storage (defaults to current working directory if not specified)"),
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