loginAction
Opens Winpot's existing login modal, fills username/email and password when provided, and submits through the modal if the form becomes submittable.
View tool JSON
{
"name": "login",
"kind": "act",
"impl": "imperative",
"description": "Opens Winpot's existing login modal, fills username/email and password when provided, and submits through the modal if the form becomes submittable.",
"inputSchema": {
"type": "object",
"properties": {
"usernameOrEmail": {
"type": "string",
"description": "Username or email address, optional"
},
"password": {
"type": "string",
"description": "Password, optional"
},
"remember": {
"type": "boolean",
"description": "Whether to remember the user on this browser, optional"
},
"submit": {
"type": "boolean",
"description": "Whether to click the login button after filling credentials. Defaults to true only when both username/email and password are provided."
}
}
}
}search_gamesAnswer
Search Winpot's public casino game catalog by name. Read-only, no login required. Returns matching game names, ids, and types.
View tool JSON
{
"name": "search_games",
"kind": "answer",
"impl": "imperative",
"description": "Search Winpot's public casino game catalog by name. Read-only, no login required. Returns matching game names, ids, and types.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Text to search for in game names"
}
},
"required": [
"query"
]
}
}view_infoAnswer
Returns links to Winpot's public help/info pages (terms and conditions, payment options, deposits, withdrawals). Read-only, no login required.
View tool JSON
{
"name": "view_info",
"kind": "answer",
"impl": "imperative",
"description": "Returns links to Winpot's public help/info pages (terms and conditions, payment options, deposits, withdrawals). Read-only, no login required.",
"inputSchema": {
"type": "object",
"properties": {
"topic": {
"type": "string",
"enum": [
"terms",
"payment-options",
"deposits",
"withdrawals"
],
"description": "Which info page to return. Omit to get all of them."
}
}
}
}