web_login
Web automation · macOS · Windows
Effect: send (strongest supported action). Status: gated.
Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.
macOS
Purpose
Opens a real browser window on the Mac for the user to sign into a website themselves (you never handle their password). After they log in, the session is saved on this Mac and reused by web_navigate/web_read/web_screenshot — they won't need to log in again. Use a stable `session` name per site (e.g. 'linkedin'). NOTE: automating sites like Instagram/LinkedIn may violate their terms — the user accepts that risk.
Required inputs
url— The site's login URL to open, e.g. https://www.linkedin.com/login
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — macOS
{
"properties": {
"session": {
"description": "A stable name for this login profile, e.g. 'linkedin'.",
"type": "string"
},
"url": {
"description": "The site's login URL to open, e.g. https://www.linkedin.com/login",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"session": "demo-browser",
"url": "https://example.com"
}Windows
Purpose
Opens a real browser window for the user to sign into a website THEMSELVES (you never handle their password). Ensures the session, navigates to the login URL, and reveals the window in the foreground. After they log in, the session is saved on disk and reused by web_navigate/web_read — they won't need to log in again. Use a stable `session` name per site (e.g. 'linkedin'). NOTE: automating some sites may violate their terms — the user accepts that risk.
Required inputs
url— The site's login URL to open, e.g. https://www.linkedin.com/login
Permissions and confirmation
No explicit confirmation parameter is exposed in this snapshot. This does not grant permission to act: obtain user authorization before any real action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — Windows
{
"properties": {
"session": {
"description": "A stable name for this login profile, e.g. 'linkedin'. Defaults to 'default'.",
"type": "string"
},
"url": {
"description": "The site's login URL to open, e.g. https://www.linkedin.com/login",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"session": "demo-browser",
"url": "https://example.com"
}