Skip to main content
Glama
nfodor

Chromium ARM64 Browser

by nfodor

wipe_logs

Remove all stored logs from memory on the Chromium ARM64 Browser MCP server to optimize performance and maintain privacy during web testing and automation tasks.

Instructions

Clear all stored logs from memory

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the 'wipe_logs' tool. It clears all global log arrays (consoleLogs, consoleErrors, networkLogs, networkErrors) and returns a confirmation message.
    async wipeLogs() { consoleLogs = []; consoleErrors = []; networkLogs = []; networkErrors = []; return { content: [{ type: 'text', text: 'All logs cleared from memory' }], }; }
  • index.js:263-270 (registration)
    Registration of the 'wipe_logs' tool in the ListToolsRequestSchema handler, including its name, description, and empty input schema (no parameters required).
    { name: 'wipe_logs', description: 'Clear all stored logs from memory', inputSchema: { type: 'object', properties: {}, }, },
  • index.js:375-376 (registration)
    Dispatch case in the CallToolRequestSchema handler that routes calls to the wipeLogs() method.
    case 'wipe_logs': return await this.wipeLogs();

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nfodor/mcp-chromium-arm64'

If you have feedback or need assistance with the MCP directory API, please join our Discord server