Skip to main content
Glama

get_my_bookmarks

Fetch your saved/bookmarked listings from Sheypoor. Use page and size parameters to browse bookmarked classifieds and revisit items you have saved.

Instructions

List the authenticated user's saved/bookmarked listings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
sizeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It correctly indicates a list operation, but does not mention authentication prerequisites, error behavior, pagination semantics, or whether any side effects occur. Given the complete lack of annotation support, this is a notable gap.

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 a single clear sentence with no filler words. It front-loads the verb and resource immediately, and every word contributes meaning. No unnecessary details or repetition.

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?

For a simple list operation with two optional pagination parameters and no output schema, the description is adequate but sparse. It does not mention authentication requirements, return value shape, or pagination behavior. Since there is no output schema and no annotations, these omissions leave an agent partly guessing about how to invoke and interpret the tool.

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?

Schema description coverage is 0%, and the description does not mention page or size at all. While the schema provides type, default, and bounds, the tool description adds no semantic meaning about how pagination works or how these parameters affect results. The description fails to compensate for the lack of schema-level descriptions.

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') and a clear resource ('the authenticated user's saved/bookmarked listings'). It unambiguously identifies this as a read operation for bookmarks, distinguishing it from the sibling tool get_my_listings, which would return the user's own listings rather than saved ones.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives like get_my_listings or search_listings. It implies the user must be authenticated, but does not state that login is required or refer to any sibling tool or differentiator. The agent receives no contextual direction for choosing this tool.

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