Skip to main content
Glama

wipe_logs

Remove all stored logs from memory to free up resources and maintain system efficiency on the chromium-arm64 server.

Instructions

Clear all stored logs from memory

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'wipe_logs' tool. It clears all global log arrays (consoleLogs, consoleErrors, networkLogs, networkErrors) and returns a success message.
    async wipeLogs() { consoleLogs = []; consoleErrors = []; networkLogs = []; networkErrors = []; return { content: [{ type: 'text', text: 'All logs cleared from memory' }], }; }
  • index.js:375-376 (registration)
    Dispatch/registration in the CallToolRequestSchema switch statement, calling the wipeLogs handler.
    case 'wipe_logs': return await this.wipeLogs();
  • index.js:263-270 (registration)
    Tool registration in the ListToolsRequestSchema response, including name, description, and empty input schema.
    { name: 'wipe_logs', description: 'Clear all stored logs from memory', inputSchema: { type: 'object', properties: {}, }, },
  • Input schema definition for the wipe_logs tool (empty object, no parameters required).
    inputSchema: { type: 'object', properties: {}, },

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/claude-arm64-browser'

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