calculate_otp_codes
Generate OTP codes for tokens matching a specified pattern using the otp-mcp-server. Supports TOTP and HOTP algorithms for secure one-time password creation.
Instructions
Calculate the OTP code for all tokens matching the pattern.
Args:
pattern: Token pattern (part of the name or token number)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pattern": {
"title": "Pattern",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}