Files
MCP-Browser/tools/pdf.js

8 lines
260 B
JavaScript

const browser = require('../browser');
module.exports = async ({ path = null, format = 'A4', landscape = false }) => {
await browser.start();
const file = await browser.pdf({ path, format, landscape });
return { success: true, action: 'pdf', file };
};