Files
MCP-Browser/tools/clearStorage.js
T

8 lines
199 B
JavaScript

const browser = require('../browser');
module.exports = async () => {
await browser.start();
await browser.clearStorage();
return { success: true, action: 'clear_storage', cleared: true };
};