get_account_list
Retrieve accounts available for login on a specific website. Input the domain name to access associated login credentials securely via the Authenticator App MCP Server.
Instructions
Retrieve the accounts can be used when logging into a website.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"website": {
"description": "The domain name of the website you need to login, e.g. \"github.com\"",
"type": "string"
}
},
"required": [
"website"
],
"type": "object"
}