get_2fa_code
Retrieve the current two-factor authentication (2FA) code for a specific username and website, enabling automated login processes while maintaining security.
Instructions
Retrieve the current 2FA code for a username when logging into a website.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | The username or email of the account you need to login, e.g. "john.doe@example.com" | |
website | Yes | The domain name of the website you need to login, e.g. "github.com" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"username": {
"description": "The username or email of the account you need to login, e.g. \"john.doe@example.com\"",
"type": "string"
},
"website": {
"description": "The domain name of the website you need to login, e.g. \"github.com\"",
"type": "string"
}
},
"required": [
"website",
"username"
],
"type": "object"
}