Skip to main content
Glama

get_my_listings

List the authenticated user's Sheypoor classifieds with status, page, and size filters. Requires login to access your account listings.

Instructions

List the authenticated user's listings. Requires login.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
sizeNo
statusNoall

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the burden and does add useful context: it requires login and is a read-oriented list operation. However, it doesn't disclose pagination behavior, status filtering, or what fields are returned.

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?

Two short sentences with no fluff. The main purpose is front-loaded, and the login requirement is a necessary, concise addition.

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

Completeness3/5

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

Adequate for a simple list operation with optional, well-specified parameters. The auth requirement is present, but without annotations or an output schema, it omits safety/reversibility context and return-shape details.

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

Parameters2/5

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

The description contains no parameter information and schema coverage is 0%, so it fails to compensate for the missing documentation. The schema itself is self-explanatory for page, size, and status, but the description adds no additional meaning.

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

Purpose4/5

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

States a specific verb ('List') and resource ('the authenticated user's listings'), which clearly distinguishes it from general search tools like search_listings or search_listings_all. It doesn't name sibling tools explicitly, but the scope is unambiguous.

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

Usage Guidelines4/5

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

Provides a clear context: this tool is for the authenticated user's own listings, and the login requirement is stated. It doesn't mention alternatives or exclusions, but the intended use is evident enough.

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