Skip to main content
Glama
JTreadwell1

ProdPad MCP Server

by JTreadwell1

List ProdPad Products

prodpad_list_products
Read-onlyIdempotent

List all products in ProdPad, optionally grouped by product line, to view and manage product data.

Instructions

List all products in ProdPad. Optionally group by product line.

Args:

  • group (boolean): Group by product line (default false)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
groupNoGroup products by product line (default false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and a closed-world scope, so the safety profile is fully covered externally. The description adds only that grouping is optional and defaults to false, and says nothing about pagination, result size, or ordering.

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?

Two short sentences plus an Args block; the purpose is front-loaded and there is no filler. The Args section mildly duplicates the schema description but costs almost nothing.

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?

For a zero-required-parameter, read-only list tool with annotations covering the safety profile and no output schema, the definition is sufficient to invoke correctly. Only return-shape details (ordering, pagination) are absent, which is minor here.

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 single parameter is documented identically in both schema and description, so the description adds no meaning beyond the structured field. Baseline 3 applies when the schema does the heavy lifting.

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?

States a specific verb and resource ('List all products in ProdPad') plus an optional scope modifier (group by product line). It is distinguishable from prodpad_get_product by the 'all' scope, though it never names the sibling explicitly.

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

Usage Guidelines2/5

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

There is no guidance on when to use this versus prodpad_get_product, prodpad_search, or the various scoped list tools. Usage is only implied by the verb 'List' and the fact that it is a simple enumeration endpoint.

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