Get a tool
get_productGet one product by slug.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes |
get_productGet one product by slug.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare this as read-only, idempotent, and non-destructive, so the description does not need to repeat safety traits. It adds exact-single-item retrieval by slug, but it does not disclose not-found behavior or response details. Overall, it is consistent with annotations and provides modest behavioral context beyond them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one short sentence with no filler. It states the action, the resource, and the lookup criterion efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity, rich annotations, and single parameter, the description is largely complete for selecting and invoking the tool. It could mention what happens when no product is found, but that is not essential for a simple read-only getter.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must clarify the parameter. It does so by identifying the slug as the product lookup key, which meaningfully extends the bare schema definition of a string with minLength 1. For a single-parameter tool, this is sufficient for correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the operation: retrieve one product by slug. It is not a tautology and differentiates from broader tools like search_products, though it does not explicitly distinguish it from preview_product. The resource and lookup mechanism are clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no explicit guidance on when to use this tool versus siblings such as search_products or preview_product. The phrase 'by slug' implies exact-key retrieval, but no alternatives or exclusion criteria are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools target distinct actions or resources, but preview_product and submit_product overlap since submit_product also drafts the listing before filing it. The descriptions are enough to tell them apart, though an agent could briefly confuse them.
Tool names mostly follow a clear verb_noun snake_case pattern: get_product, list_categories, search_products, submit_product, upvote_product. The main deviation is my_submissions, which uses a possessive noun phrase instead of an action verb.
Seven tools is a well-scoped set for a product submission and voting directory. Each tool serves a meaningful part of the workflow without unnecessary redundancy or bloat.
The core workflow is covered: browsing categories, searching products, viewing a product, previewing and submitting listings, checking submission status, and upvoting. Minor gaps exist such as no update or delete for submissions, but these do not severely block the primary use case.