Skip to main content
Glama
spranab

icantmarket-mcp

by spranab

get_product

Fetch a verified product's details and open ask count by slug. Use it to get the product UUID before posting an ask or to summarize a product for a user.

Instructions

Fetch a single verified product by slug. Public. Returns the product details plus the count of currently open asks. Useful to grab a product UUID before posting an ask, or to summarize a product for the user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesProduct slug, e.g. 'yantrikdb-server'

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of disclosure. It clearly states the operation is read-only ('Fetch'), public, and includes a specific extra behavior: returning the count of currently open asks. This is meaningful behavioral context for a simple getter.

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 three sentences with no filler: it leads with the core action, then adds the key return detail, then gives practical use cases. Every sentence contributes value.

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 simple single-parameter fetch tool, the description covers what it returns, its public nature, and why an agent would use it. The absence of an output schema is compensated by naming the return contents explicitly.

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 100%, and the slug parameter is already documented with an example ('yantrikdb-server'). The description adds no additional parameter-level meaning beyond restating that retrieval is by slug, so the baseline score of 3 is appropriate.

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 and resource: 'Fetch a single verified product by slug.' It also distinguishes this tool from list_products by emphasizing singular product retrieval and by naming the returned data (details + count of open asks).

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 gives explicit use cases: 'Useful to grab a product UUID before posting an ask, or to summarize a product for the user.' This provides clear context for when to call it, though it does not name alternative tools or state when not to use it.

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