Skip to main content
Glama

Mening e'lonlarim

olx_list_my_adverts
Read-onlyIdempotent

Get your OLX adverts by status with performance stats (views, phone views, saves, messages). Filter by title, paginate, and choose markdown or JSON output.

Instructions

List the logged-in account's adverts by status with performance stats (views, phone views, saves, messages).

Args:

  • status: ACTIVE (default) | WAITING | UNPAID | FINISHED | MODERATED | ALL (all statuses)

  • query: filter by title text

  • limit (1–50), offset: pagination

  • response_format: markdown | json

Returns per advert: id, title, status, price, currency, category path, location, dates, days to expire, photos count, stats {views, phones, observed}, message counters, paid features. Sorted newest first; markdown adds totals and conversion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNoSarlavha bo'yicha filtr
offsetNo
statusNoACTIVE
response_formatNoJavob formati: 'markdown' (o'qish uchun) yoki 'json' (to'liq tuzilgan ma'lumot)markdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds valuable behavior: returned fields, sorting newest first, stats structure, pagination behavior, and markdown-specific totals/conversion. This goes beyond the annotation baseline.

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?

The description is well organized with a lead sentence, an Args block, and a Returns block. Every sentence adds useful information, and the most important scoping ('logged-in account's adverts') is front-loaded.

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?

With five optional parameters and no output schema, the description is complete: it documents all parameters, lists per-advert return fields, explains the stats object, states ordering, and describes output format differences. An agent has enough information to call the tool correctly.

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

Parameters5/5

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

Schema description coverage is only 40%, so the description carries the burden, and it succeeds. It explains the meaning of all five parameters: status values and default, query filtering by title, limit/offset pagination, and response_format choices. This is meaningful guidance beyond the raw schema.

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 uses a specific verb ('List') with a clear resource ('the logged-in account's adverts') and a differentiating scope ('by status with performance stats'). It clearly distinguishes itself from sibling tools like olx_get_my_advert, which retrieves a single advert.

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

Usage Guidelines3/5

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

The description conveys a clear use case: listing the current account's adverts with status and performance stats. However, it does not explicitly state when to prefer this over alternatives such as olx_get_my_advert for a single advert, or mention any prerequisites like having an active session.

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