@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 +1 -1
- package/dist/utils/reportGenerator.js +1 -1
- package/package.json +1 -1
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.
|
|
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(
|
|
69
|
+
console.log('Report successfully generated and fixed at: ${outputFile}');
|
|
70
70
|
return { success: true, filePath: outputFile };
|
|
71
71
|
}
|