@vint.tri/report_gen_mcp 1.5.39 → 1.5.40

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
@@ -109,7 +109,7 @@ if (process.argv.length === 2) {
109
109
  // No command specified, run in stdio mode using MCP SDK
110
110
  const mcpServer = new McpServer({
111
111
  name: "report_gen_mcp",
112
- version: "1.5.39"
112
+ version: "1.5.40"
113
113
  }, {
114
114
  // Disable health check to prevent automatic calls
115
115
  capabilities: {
@@ -66,6 +66,6 @@ export async function generateReport(htmlDocument, outputFile) {
66
66
  const outputDirPath = path.dirname(outputFile);
67
67
  await fs.ensureDir(outputDirPath);
68
68
  await fs.writeFile(outputFile, finalHtml);
69
- console.log(`Report successfully generated and fixed at: ${outputFile}`);
69
+ console.log('Report successfully generated and fixed at: ${outputFile}');
70
70
  return { success: true, filePath: outputFile };
71
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vint.tri/report_gen_mcp",
3
- "version": "1.5.39",
3
+ "version": "1.5.40",
4
4
  "description": "CLI tool for generating HTML reports with embedded charts and images",
5
5
  "main": "dist/index.js",
6
6
  "bin": {