perform_login
Automate login to localhost web applications using predefined credentials via the Playwright MCP server, enabling secure and efficient browser automation.
Instructions
Performs automated login to http://localhost using predefined credentials (admin/AIWorkshopJuly!25). This tool requires a Playwright MCP server to be running for browser automation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | No | The URL to navigate to for login (defaults to http://localhost) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to navigate to for login (defaults to http://localhost)",
"format": "uri",
"type": "string"
}
},
"type": "object"
}