Skip to main content
Glama

byebye

Securely end work sessions by locking access, removing stored secrets from disk, and providing session closure for SecureCode's encrypted vault.

Instructions

End your work session. Locks the session, cleans up all injected secrets from disk, and says goodbye. Use this when you finish working for the day.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The "byebye" tool handler locks the session and cleans up session files.
    // Tool: byebye
    server.tool(
      'byebye',
      'End your work session. Locks the session, cleans up all injected secrets from disk, and says goodbye. Use this when you finish working for the day.',
      {},
      async () => {
        try {
          const client = getClient();
          await client.sleepSession();
        } catch {
          // Session might already be sleeping
        }
        cleanupSessionFiles();
        return wrapResponse([{
          type: 'text' as const,
          text: 'Session locked & secrets cleaned from disk. See you next time!',
        }]);
      },
    );

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/juanisidoro/securecode-mcp'

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