TOTP Authenticator Generator

Free online TOTP (Time-based One-Time Password) generator. RFC 6238 standard, pure JS HMAC-SHA1 implementation.

Usage

Features

  • RFC 6238 TOTP standard (HMAC-SHA1)
  • 6 or 8 digits, 30 or 60 second period
  • Base32 secret parsing (ignores spaces, auto-pads =)
  • Real-time countdown progress bar
  • Auto-refresh every 1 second

Use Cases

  • Google Authenticator / Authy / Microsoft Authenticator testing
  • Secret stays in your browser, pure frontend
  • This tool has no backend API endpoint, all computation is in JS

Agent API Usage

This tool is pure frontend. Data is processed in the browser and never sent to a server. The api_url in manifest is empty; the /api/totp_2fa/ endpoint returns 404. Agents should read schema.json to understand fields, then execute the tool logic in the browser.
// Step 1: Read the tool schema
GET https://clawam.com/en/tools/totp_2fa/schema.json

// Step 2: Execute the tool logic in the browser
// TOTP is implemented in the tool page JS (RFC 6238)