Skip to main content
Glama

OLX akkauntiga kirish

olx_login
Idempotent

Resolve OLX session errors by opening a visible Chrome window for manual login, waiting for authentication, and saving session cookies for authenticated access.

Instructions

Open a visible Chrome window on the user's computer so THEY can log into their OLX account (phone/email + password or SMS code). The tool never types credentials; it only waits until login is detected (up to wait_minutes) and saves the session cookies locally. Call this when any account tool returns a session error. Tell the user a Chrome window has opened and they should log in there.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wait_minutesNoKirishni necha daqiqa kutish

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already say readOnlyHint=false (mutation), idempotentHint=true, and destructiveHint=false. The description adds valuable behavior beyond that: it opens a visible window on the user's machine, waits until login is detected, saves session cookies locally, and does not type credentials. This covers the important non-obvious behavior (interactive user involvement, no automation of credentials, cookie persistence). It could have mentioned that it blocks until timeout or returns a session-status result, but the main behavioral risks (no credential entry, cookie saving) are clearly disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, all load-bearing: what the tool does, key constraint (never types credentials/waits and saves cookies), and when to call it plus user instructions. No filler, and the critical caveat ('never types credentials') is front-loaded in the first sentence.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a login tool with 1 optional param and no output schema, this is complete. It covers the purpose, the interaction model, the trigger condition, the timeout parameter, the side effect (saving cookies), and the user-facing message. An agent can invoke this correctly and knows what to tell the user. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 1 parameter and schema description coverage at 100%, the baseline is 3. The description adds meaning though: it explains wait_minutes corresponds to 'waits until login is detected (up to wait_minutes)', which ties the parameter to the login-wait behavior. It doesn't describe what happens when the timeout is reached (e.g., error vs. return), but for a single optional parameter with reasonable schema docs, this is more than minimum.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource ('open a visible Chrome window... to log into their OLX account') and clearly differentiates it from siblings: it's the only tool that performs interactive login, while siblings like olx_session_status and olx_get_my_profile require an existing session. Even without knowing the sibling definitions, an agent can tell this is the login/session-restoration tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says when to call it: 'Call this when any account tool returns a session error.' It also says what the tool does NOT do ('never types credentials') and what the user must do, plus it gives a concrete first step ('Tell the user a Chrome window has opened'). This is strong usage guidance with no ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.