Skip to main content
Glama

Sellular

track_product

Start tracking one of your products on the connected Sellular account, so the account-scoped tools can work on it: check_submission_readiness, generate_submission_kit, get_product_analytics and record_submission all refuse to run for a product that is not tracked. Idempotent by website: calling it again for a site already tracked UPDATES that entry (name, category, tagline, description) instead of creating a duplicate, so it is safe to retry. Never deletes anything. Account-scoped: requires the MCP_API_KEY bearer token, and asks you to confirm before writing. Use when a product is missing from list_tracked_sites.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe product website, e.g. "quickpeek.co". This is the identity: the same site twice updates one entry rather than adding two.
nameYesProduct name as it should appear, e.g. "QuickPeek".
typeNo"saas" for a subscription web app, "product" for a one-off or downloadable.saas
taglineNoOne line, under ~60 chars. Used as the short field on directory forms.
categoryNoCategory used for directory matching and community filters.
descriptionNoA sentence or two on what it does and who it is for. Directory submission copy is built from this, so a thin one produces thin listings.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full burden. It discloses idempotency, the update-instead-of-duplicate behavior, that it never deletes anything, the need for MCP_API_KEY bearer token, and the confirmation-before-write requirement. This is comprehensive and leaves no hidden side effects unaddressed.

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 dense but every sentence earns its place: primary purpose, dependent tools, idempotency/update behavior, safety, auth, confirmation, and usage trigger. It is front-loaded with the core action and progressively adds context. 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?

The description covers purpose, usage, side effects, and auth, and the schema documents all parameters. The only gap is the lack of any mention of the return value or response format, which could matter to an agent expecting a confirmation object. Still, for a mutation tool with rich context, this is a minor omission.

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 coverage is 100%, so the baseline is 3. The description does not add parameter-specific guidance beyond the schema; however, the schema itself is detailed (e.g., 'tagline' notes 'under ~60 chars', 'description' notes it feeds directory copy). The description adds no extra param semantics, so a baseline 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 opens with a specific verb and resource ('Start tracking one of your products on the connected Sellular account') and explicitly names the sibling tools that depend on it (check_submission_readiness, generate_submission_kit, etc.), distinguishing it from list_tracked_sites. It also clarifies the update semantics, leaving no ambiguity about what the tool does.

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

Usage Guidelines5/5

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

It gives an explicit usage condition: 'Use when a product is missing from list_tracked_sites.' It also explains the idempotent retry behavior and the prerequisite of a bearer token, and implicitly differentiates from list_tracked_sites (which lists) and the other account-scoped tools (which require prior tracking).

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources