Skip to main content
Glama

Search

search
Read-onlyIdempotent

Find 999.md classified ads by text, category, price, and filters. Returns ad cards with price, location, date, seller, photo, link, plus total count and paging info.

Instructions

Search 999.md ads by text, category and filters. Returns a page of short ad cards (price, location, date, seller login, first photo, link) plus total count and paging info.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoDefault: 999.md's own order (newest republished first)
limitNo
queryNoFree-text search, e.g. 'iphone 15 pro' or 'велосипед'
offsetNo
filtersNoFilter conditions (ANDed); ids come from get_filters
categoryNoCategory or subcategory: id (1404), path ('real-estate/apartments-and-rooms') or a 999.md list link
currencyNoCurrency of price_min/price_max; ads in other currencies are converted by 999.mdEUR
price_maxNoShortcut for a price filter
price_minNoShortcut for a price filter

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, openWorldHint and destructiveHint=false, so the safety profile is covered. The description adds useful return-shape context (ad card fields, total count, paging info), though an output schema exists and duplicates much of that. Nothing is contradicted.

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 sentences, front-loaded with the verb and resource, followed by the return contents. Every clause carries information; no filler.

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

Completeness4/5

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

With 9 optional params and an output schema, the definition covers the essentials: what is searched and what comes back, including paging. Minor gaps remain around sorting semantics and the dependency on get_filters for filter ids, but the schema compensates for most of that.

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

Parameters3/5

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

Schema description coverage is 78%, so the schema largely documents parameters on its own. The description mentions text, category and filters but adds no syntax, default, or interactive guidance beyond what the schema already states, so the baseline 3 is correct.

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?

Names a specific verb and resource ('Search 999.md ads') and enumerates the search dimensions (text, category, filters), which maps cleanly onto the query/category/filters params. It stops short of differentiating itself from siblings like seller_ads or get_ad, so it lands below a 5.

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?

Usage is implied by the purpose statement, but there is no explicit when-to-use guidance and no routing to alternatives such as get_ad for a single listing or get_filters for obtaining filter ids. The agent must infer the tool's place in the workflow.

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