Smithery

smart_login

Attempt to log in to a website. Navigates to the login URL, finds email/username and password fields, fills them in, and submits the form with click, Enter, and form-submit fallbacks for Clerk and other multi-step auth UIs. Returns a screenshot and reports whether login succeeded, failed, or needs verification. Always ask the user for credentials first — never guess. If the site requires email verification (OTP code), use read_verification_email to automatically fetch the code from Gmail (requires one-time authorize_email_access setup).

Remote relievedattention992-smithery/screenshotsmcp

Other tools also called smart_login? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "loginUrl": {
      "type": "string",
      "format": "uri",
      "description": "The login page URL to navigate to"
    },
    "password": {
      "type": "string",
      "description": "The password to enter"
    },
    "username": {
      "type": "string",
      "description": "The username or email to enter"
    },
    "submitSelector": {
      "type": "string",
      "description": "CSS selector for submit button. Auto-detected if omitted."
    },
    "passwordSelector": {
      "type": "string",
      "description": "CSS selector for password field. Auto-detected if omitted."
    },
    "usernameSelector": {
      "type": "string",
      "description": "CSS selector for username field. Auto-detected if omitted."
    }
  }
}