Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

slickdeals_category

Retrieve current deal listings for a Slickdeals category, returning title, price, list price, store, vote score, comment count, and status flags.

Instructions

Browse current deals in one Slickdeals category/tag. Returns the current deal listing for one Slickdeals category/tag (e.g. "laptop-bag", "apparel"): for each deal, title, price, list price, store, community vote score, comment count, the public username who posted it, and status flags (is_popular, is_expired, is_new, is_frontpage). slug must be one of the values from GET /slickdeals/categories -- an unrecognized slug returns a typed invalid-parameter error rather than being sent upstream. Pair a result's thread_id or url with GET /slickdeals/deal for the full detail record (description, full taxonomy).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesCategory/tag slug from GET /slickdeals/categories

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.17.5

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden and does well: it lists output fields, status flags, and the validation behavior for unrecognized slugs ('returns a typed invalid-parameter error rather than being sent upstream'). It does not mention pagination or ordering, but the disclosed error behavior and return shape are strong.

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

Conciseness4/5

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

The description is longer than minimal but every sentence earns its place: purpose, output fields, validation rule, and related endpoint. It is front-loaded with the core action and resource, and the supporting details are organized logically.

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 single-parameter read tool with no output schema and no annotations, the description is complete: it names the parameter source, examples, error behavior, output fields, and the follow-up endpoint for richer detail. An agent has everything needed to select and invoke the tool correctly.

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?

Schema coverage is 100% for the single slug parameter, so the baseline is 3. The description adds meaningful value beyond the schema by giving concrete examples ('laptop-bag', 'apparel'), requiring values from GET /slickdeals/categories, and explaining the error behavior for invalid slugs.

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 ('Browse') and resource ('current deals in one Slickdeals category/tag'), and enumerates the exact fields returned. It clearly differentiates from related tools by emphasizing 'one category/tag' and pointing to GET /slickdeals/categories for valid slugs.

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?

The description provides clear context for when to use this tool: browsing deals for a single category/tag. It explicitly routes the agent to GET /slickdeals/categories for valid slug values and to GET /slickdeals/deal for full detail records. It does not explicitly exclude alternatives like frontpage or search, but the category-scoped purpose is unambiguous.

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

Deploy Server

Other Tools