otp-mcp-server
Related Servers
Alternatives to otp-mcp-server
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityDmaintenanceComprehensive MCP server offering password generation, QR code creation, Base64 encoding/decoding, UUID generation, and color palette tools with secure API key authentication.-
- FlicenseBqualityDmaintenanceA comprehensive HTTP/HTTPS tool server using curl, supporting various authentication methods, file uploads, downloads, and custom curl commands.101-
- AlicenseNot gradedqualityCmaintenanceA simple PHP MCP server that auto-discovers tool classes via reflection and authenticates requests via static bearer token or rotating TOTP codes.1MIT
- FlicenseNot gradedqualityCmaintenanceMCP server that adds TOTP two-factor authentication support to Archery MCP, enabling secure login for Archery accounts with 2FA enabled.-
- FlicenseAqualityDmaintenanceA simple MCP server that provides current time in Korean timezone (KST) with multiple format options and generates random numbers within customizable ranges.2-
- AlicenseNot gradedqualityDmaintenanceA secure MCP server with authentication, rate limiting, and tools for querying records and managing integrations.1,039 npmMIT
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: add_token creates tokens, calculate_otp_codes generates codes, delete_token removes tokens, get_details retrieves token metadata, and list_otp_tokens enumerates available tokens. There is no functional overlap between these operations.
Four tools follow a consistent verb_noun pattern (add_token, delete_token, get_details, list_otp_tokens), but calculate_otp_codes uses a verb_object format that slightly deviates from the pattern. The naming is still highly readable and predictable.
With 5 tools, this server is well-scoped for OTP management. It covers the essential CRUD operations (add, delete, list, get details) plus code calculation, which is the core functionality. No tool feels redundant or missing for the domain.
The toolset provides complete coverage for OTP token management: creation (add_token), retrieval (list_otp_tokens, get_details), usage (calculate_otp_codes), and deletion (delete_token). There are no obvious gaps in the lifecycle or functionality for this domain.